.auth-logo img {
    width: 120px;
    height: auto;
}

.userGreeting {
    text-transform: capitalize;
}

#sidebar-menu>ul {
    margin-top: 20px;
}

.logo-lg img {
    width: 120px;
    height: auto;
}

.rating .stars {
    display: flex;
    position: relative;
}

.rating .stars-bg {
    display: flex;
}

.rating .stars-fg {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.rating .star {
    font-size: 15px;
    cursor: pointer;
    color: #e0e0e0;
    /* Empty star color */
}

.rating .stars-fg .star {
    color: #ff9900;
    /* Filled star color */
}

.apex-charts {
    pointer-events: none;
}

.networkMessage {
    padding: 10px;
    background-color: green;
    color: #fff;
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: block;
}

.action-buttons {
    display: flex;
    align-items: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-head .filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    justify-content: end;
    width: 100%;
}

.table-head .filters label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    white-space: nowrap;
}

#prev-btn:disabled,
#next-btn:disabled,
#filter-prev-btn:disabled,
#filter-next-btn:disabled {
    opacity: 0.6;
}

#prev-btn:disabled:hover,
#next-btn:disabled:hover,
#filter-prev-btn:disabled:hover,
#filter-next-btn:disabled:hover {
    background: unset;
    color: unset;
}

.pagination.disabled {
    display: none;
}

.ratingNo .star {
    color: #ff9900;
}

.reviewMessage {
    max-width: 350px;
    max-height: 100px;
    overflow-y: auto;
}

.profile-dropdown {
    display: none;
}

.buttons-print {
    display: none;
}

.filterBtn {
    display: flex;
    align-items: center;
    gap: 10px
}

.filterBtn label {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.loading.disabled {
    display: none;
}

.emptyMessage {
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
}

.loginMessage {
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.loginSuccessMessage {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

@media only screen and (max-width:860px) {

    .table-head .filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media only screen and (max-width:480px) {

    .table-head .filters {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}
#clearFilterBtn{
    font-size: 12px;
    white-space: nowrap;
    display: none;
    align-items: center;
}
#clearFilterBtn svg{
    width: 15px;
}