@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

:root {
    /** Main Colors */
    --font: "Rubik", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --black-50: rgba(0, 0, 0, 0.5);
    --primary-color: linear-gradient(90deg, #FF6D00, #CC5500);
    --primary-color-dark: #FF6D00;
    --body-bg-color: #f5f3f2;
    --body-color: #d4bfb5;
    --assest-color: #E9D8CF;
    --partition-color: #1b1b1b;

    /* Theme Specification */
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --blue: #0d6efd;
    --green: #058f00;
    --red: #e3000b;
    --gray: #666;
    --cyan: #0dcaf0;
    --orange: #fd7e14;

}

[data-theme="dark"] {
    /** Main Colors */
    --white-color: #fff;
    --black-color: #000;
    --black-50: rgba(0, 0, 0, 0.5);
    --primary-color: linear-gradient(90deg, #FF944D, #D2742E);
    --primary-color-dark: #FF944D;
    --body-bg-color: #f5f3f2;
    --body-color: #b89c8f;
    --assest-color: #6b544b;
    --partition-color: #fff;

    /* Theme Specification */
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --blue: #0d6efd;
    --green: #058f00;
    --red: #e3000b;
    --gray: #666;
    --cyan: #0dcaf0;
    --orange: #fd7e14;

}

html,
body {
    height: 100%;
    overflow: auto;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    background-color: var(--body-bg-color);
    font-size: 14px;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

.defaultfont {
    font-family: var(--font);
}

a {
    text-decoration: none !important;
}

.primary-color {
    color: var(--primary-color-dark) !important;
}

.primary-bg {
    background: var(--primary-color) !important;
}
.listitemClass {
    background-color: var(--body-bg-color);
    border: 1px solid var(--black-color);
    cursor: s-resize;
}
.text-gray {
    color: var(--black-color);
    opacity: 0.6;
}

.text-black {
    color: var(--partition-color);
}

.btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

.btn-link {
    color: var(--primary-color-dark) !important;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color-dark);
    display: inline-block;
    padding: 0 0 0px;
    border-radius: 0;
    font-size: 14px;
}

.btn-default {
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 20px;
}

.btn-default:hover {
    color: var(--primary-color-dark);
    background: transparent;
    border-color: var(--primary-color-dark);
}

.mw-100 {
    min-width: 100px;
}

.mw-120 {
    min-width: 120px;
}

.mw-150 {
    min-width: 150px;
}

.btn-icon {
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--primary-color);
}

.btn-icon {
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--primary-color);
}

.dropright .dot-icon {
    height: 18px;
}

.dropright .dropdown-menu {
    top: 100% !important;
    right: 0;
    -webkit-transform: none !important;
    transform: none !important;
    left: auto !important;
}

.dropdown-menu {
    -webkit-box-shadow: 0 15px 35px var(--assest-color);
    box-shadow: 0 15px 35px var(--assest-color);
    padding: 4px;
    border: 0;
    border-radius: 12px;
}

.dropdown-menu .dropdown-item {
    font-weight: 500;
    border-bottom: 2px dashed var(--assest-color);
    padding: 7px 11px;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: var(--assest-color);
    border-radius: .25rem
}

.breadcrumb a {
    color: var(--primary-color-dark);
    font-weight: bold;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    content: "/"
}

.breadcrumb-item.active {
    color: var(--partition-color)
}

.side-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: transparent;
    padding: 0;
}

.side-toggle span {
    background: var(--primary-color);
    width: 22px;
    height: 3px;
    margin: 2px;
    border-radius: 50px;
}

.side-toggle span:nth-child(2) {
    width: 26px;
}

.custom-control .custom-control-label::before {
    background: transparent;
    border: 2px solid var(--primary-color-dark);
    border-radius: 3px;
}

.custom-control .custom-control-input:checked~.custom-control-label::after {
    border-radius: 3px;
    background-color: var(--primary-color-dark);
}

.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label:after {
    border-radius: 50% !important;
}

.sidebar {
    background: var(--assest-color);
    padding: 30px 15px 30px 15px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 280px;
    max-width: 100%;
    overflow: auto;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--primary-color-dark) !important;
}

.sidebar::-webkit-scrollbar-track {
    background: var(--assest-color);
}

@media (min-width: 1680px) {
    .sidebar {
        width: 300px;
    }
}

.sidebar.hide-sidebar {
    width: 80px;
    padding: 30px 10px;
}

@media (min-width: 1024px) {
    .sidebar.hide-sidebar .side-menu .partition {
        display: none;
    }

    .sidebar.hide-sidebar .side-head {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 6px 0 5px 2px;
        width: 50px;
    }

    .sidebar.hide-sidebar .side-logo,
    .sidebar.hide-sidebar .partition,
    .sidebar.hide-sidebar .side-menu a>span {
        display: none;
    }

    .sidebar.hide-sidebar .side-menu .active a:after {
        content: none;
    }

    .sidebar.hide-sidebar .side-menu a {
        margin: 6px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 13px 9px;
        height: 50px;
        width: 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sidebar.hide-sidebar .side-menu a .menu-icon {
        margin-right: 0;
    }

    .sidebar.hide-sidebar .side-menu a.dropdown-toggle:after {
        content: none;
    }

    .sidebar.hide-sidebar .side-menu .dropdown-menu {
        margin-left: 0;
        min-width: unset;
        padding: 0;
    }

    .sidebar.hide-sidebar .side-menu .dropdown-menu a {
        padding: 0;
    }

    .sidebar.hide-sidebar .side-menu .dropdown-menu .active {
        padding: 0;
        margin: 0px;
    }

    .sidebar.hide-sidebar .side-menu .dropdown-menu a svg {
        margin-right: 0;
    }
}

@media (min-width: 1680px) {
    .sidebar.hide-sidebar .side-head {
        margin: 14px 0 5px -3px;
    }
}

.sidebar .side-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sidebar .side-logo {
    width: 150px;
}

.sidebar .side-menu {
    padding: 0;
    list-style: none;
    margin: 40px 0 0;
}

.sidebar .side-menu a {
    color: var(--partition-color);
    display: block;
    padding: 10px 12px;
    position: relative;
    margin: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.sidebar.hide-sidebar .side-menu .side_line.active a:after {
    display: none;
}

.sidebar .side-menu .side_line.active a:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: var(--white-color);
}

.sidebar .side-menu a .menu-icon {
    margin-right: 12px;
}

.sidebar .side-menu .dropdown-menu a .submenu-icon {
    margin-right: 12px;
}

.sidebar .side-menu a:hover {
    color: var(--primary-color-dark);
    font-weight: 600;

}

.sidebar .side-menu .active a {
    background: var(--primary-color);
    border-radius: 15px;
    color: var(--white-color);
}

.sidebar .side-menu .active a .menu-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.sidebar .side-menu .active .dropdown-menu .active .submenu-icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.sidebar .side-menu .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 22px;
}

.sidebar .side-menu .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    float: none;
    background: transparent;
    margin-left: 15px;
}

.sidebar .side-menu .dropdown-menu .dropdown-item {
    padding: 4px 12px;
    background: transparent !important;
}

.right-content {
    margin-left: 280px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.sidebar .side-menu .side-submenu a {
    color: var(--partition-color);
    display: block;
    padding: 10px 12px;
    position: relative;
    margin: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.sidebar .side-menu .side-submenu .active {
    background: var(--primary-color);
    border-radius: 15px;
    color: var(--white-color);
    padding: 1px 0px;
}

.sidebar .side-menu .side-submenu a:hover {
    color: var(--primary-color-dark);
    font-weight: 600;
}

.sidebar .side-menu .side-submenu .active a:hover {
    color: var(--white-color);
    font-weight: 600;
}

.sidebar .side-menu .side-submenu .active a {
    color: var(--white-color);
}

@media (min-width: 1680px) {
    .right-content {
        margin-left: 300px;
    }
}

.right-content.right-content-0 {
    margin-left: 80px;
}

.right-content.right-content-0 .header .title-control .side-toggle {
    display: none;
}

.header {
    position: sticky;
    -webkit-position: -webkit-sticky;
    top: 0;
    background: var(--assest-color);
    z-index: 22;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .title-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header .title-control .side-toggle {
    margin-right: 15px;
    display: none;
}

.header .page-title {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    color: var(--partition-color);
}

.header .input-group {
    border: 1px solid var(--assest-color);
    border-radius: 100px;
    width: 550px;
    max-width: 100%;
}

.header .input-group .input-group-text,
.header .input-group .form-control {
    background: transparent;
    border: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

.header .input-group .input-group-text img,
.header .input-group .form-control img {
    width: 20px;
    margin: 0 5px;
}

.header .input-group .form-control {
    font-size: 14px;
    padding: 12px 6px;
}

.header .side-logo {
    display: none;
}

.header .head-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header .head-control .head-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 15px;
    -webkit-box-shadow: 0 15px 35px var(--primary-color-dark);
    box-shadow: 0 15px 35px var(--primary-color-dark);
}

.avatar-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.body-content {
    padding: 25px;
}

.box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--body-color);
    padding-bottom: 10px;
    margin-top: 20px;
}

.box-title .title {
    font-size: 20px;
    font-weight: 600;
    margin: 5px 0;
    color: var(--partition-color);
}

.box-title .header-text {
    color: var(--black-color);
}

.avatar-control {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.avatar-control .avatar-img {
    height: 50px;
    width: 50px;
    border-radius: 20%;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--body-color);
}


.table {
    border-color: var(--body-color);
    min-width: 650px;
}

.table thead th {
    font-size: 14px;
    font-weight: 600;
    border-top: 0;
    border-bottom: 1px solid var(--body-color);
    background-color: var(--body-color);
    color: var(--black-color);
}

.table td {
    font-size: 14px;
    border-bottom: 1px solid var(--body-color);
    color: var(--black-color);
    border-top: 0;
    vertical-align: middle;
}

.table .avatar-img {
    margin-right: 10px;
}

.table .clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.table .btn {
    padding: 2px;
    background: transparent;
    margin: 0 3px;
}

.table .btn img {
    width: 16px;
}

.table tfoot {
    background-color: var(--body-color);
}

.dot {
    height: 8px;
    width: 8px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.custom-tabs {
    margin: 20px 0;
    background: var(--assest-color);
    border-radius: 100px;
}

.custom-tabs li.nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.custom-tabs .nav-link {
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--partition-color);
    padding: 10px;
}

.custom-tabs .nav-link.active {
    background: var(--primary-color);
}


.summary-table-card .border-card {
    padding: 10px;
    border: 2px solid var(--assest-color);
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.summary-table-card .border-card:hover {
    border: 2px solid var(--primary-color-dark);
}

.summary-table-card .border-card>.row {
    margin: 0;
}

.summary-table-card .border-card>.row .col,
.summary-table-card .border-card>.row .col-1,
.summary-table-card .border-card>.row .col-2,
.summary-table-card .border-card>.row .col-12 {
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.summary-table-card .avatar-control {
    min-width: 120px;
    font-weight: 600;
}

.summary-table-card .avatar-control img {
    margin-right: 8px;
}

.summary-table-card .price {
    color: var(--red-color);
    font-weight: 600;
}

.video-box {
    padding: 25px;
    background: var(--assest-color);
}

.video-box .f600 {
    font-weight: 600;
}

.video-box .box-border-0 {
    border: 0;
    padding-bottom: 0;
}

.page-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--body-color);
    border-radius: 8px;
    padding: 7px;
}

.page-search .input-group-text,
.page-search .form-control {
    border: 0;
    background: transparent;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    font-size: 14px;
}

.page-search .input-group-text img,
.page-search .form-control img {
    width: 20px;
}

.page-search .sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 290px;
    background-color: var(--white-color);
    padding: 2px 12px;
    border-radius: 8px;
}

.page-search .sorting label {
    min-width: 60px;
    margin: 0;
    font-weight: 600;
}

.pagination {
    padding: 5px;
    border: 1px solid var(--body-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 10px;
    margin: 35px auto 0;
}

.pagination .page-link {
    border: 0;
    height: 30px;
    width: 30px;
    background: var(--body-color) !important;
    margin: 0 5px;
    border-radius: 50px !important;
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination .page-link .right-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination .page-link .dots {
    font-weight: 600;
    margin-top: -4px;
}

.pagination .arrow-icon {
    height: 20px;
    width: 20px;
    background-image: url("../../assets/imgs/left-arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px;
}

.pagination .arrow-icon .next-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.pagination .active .page-link {
    background: var(--primary-color) !important;
}


.modal .close {
    font-size: 34px;
    color: var(--white-color);
    opacity: 1;
    position: absolute;
    right: 5px;
    top: 0px;
    font-weight: 200;
    z-index: 22;
    outline: none;
}

.inline-tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 2;
}

.inline-tabs li.nav-item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.inline-tabs .nav-link {
    padding: 10px 35px;
}

.app-right-btn {
    text-align: right;
    margin-top: -60px;
    margin-bottom: 30px;
}

.custom-border-card {
    background: var(--assest-color);
    -webkit-box-shadow: 0 15px 35px var(--assest-color);
    box-shadow: 0 15px 35px var(--assest-color);
    border: 1px solid var(--assest-color);
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.custom-border-card .card-header {
    font-size: 18px;
    background: transparent;
    padding: 0;
    font-weight: 700;
    border-bottom: 2px solid var(--body-color);
    padding-bottom: 15px;
    color: var(--partition-color);
}

.custom-border-card .card-body {
    padding: 18px 0 10px;
}


.border-top {
    border-top: 1px solid var(--body-color) !important;
}

.form-group label {
    font-weight: 500;
    color: var(--partition-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.form-control,
.custom-select {
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    height: auto !important;
}

.form-control:focus,
.custom-select:focus {
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border-color: var(--primary-color-dark);
}

.file-control {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
    cursor: pointer;
}

.file-control span {
    opacity: 0.6;
    display: inline-block;
    margin-top: 10px;
}

.thumbnail-img {
    position: relative;
    border: 1px solid var(--assest-color);
    display: inline-block;
    height: 100px;
    width: 130px;
    border-radius: 10px;
    padding: 4px;
}

.thumbnail-img img {
    border-radius: 8px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.thumbnail-img .close {
    position: absolute;
    top: 5px;
    right: 8px;
    color: var(--white-color);
    opacity: 1;
    font-weight: 300;
}

.radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.radio-group .custom-control {
    padding-left: 0;
    margin-right: 15px;
}

.radio-group .custom-control-label {
    margin-bottom: 0;
    background: var(--body-bg-color);
    color: var(--black-color);
    padding: 6px 23px 6px 33px;
    border-radius: 100px;
    font-size: 16px;
}

.radio-group .custom-control-label::before,
.radio-group .custom-control-label:after {
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.radio-group .custom-control-label:after {
    display: none;
}

.radio-group .custom-control-label::before {
    background: transparent;
    border: 3px solid var(--body-color);
}

.radio-group .custom-control-input:checked~.custom-control-label {
    background: var(--primary-color);
    color: var(--white-color);
}

.radio-group .custom-control-input:checked~.custom-control-label::before {
    background: var(--primary-color);
    border-color: var(--white-color);
}

.page-title-sm {
    display: none;
}

.border-bottom {
    border-color: var(--assest-color) !important;
}

table.dataTable>thead .sorting:before,
table.dataTable>thead .sorting_asc:before,
table.dataTable>thead .sorting_desc:before,
table.dataTable>thead .sorting_asc_disabled:before,
table.dataTable>thead .sorting_desc_disabled:before {
    content: "↑";
}

table.dataTable>thead .sorting:after,
table.dataTable>thead .sorting_asc:after,
table.dataTable>thead .sorting_desc:after,
table.dataTable>thead .sorting_asc_disabled:after,
table.dataTable>thead .sorting_desc_disabled:after {
    content: "↓";
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--body-color);
    border-radius: 8px;
    padding: 6px 18px;
    font-weight: 600;
}

div.dataTables_wrapper div.dataTables_length label .form-control,
div.dataTables_wrapper div.dataTables_filter label .form-control {
    padding: 6px 18px;
    text-align: center;
    margin: 0 13px;
}

div.dataTables_wrapper div.dataTables_length label input.form-control,
div.dataTables_wrapper div.dataTables_filter label input.form-control {
    margin-right: 0;
    text-align: left;
}

div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child,
div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
    overflow: auto;
}

div.dataTables_wrapper div.dataTables_info {
    color: var(--partition-color);
}

/* Container for left caption area with background image */
.left-caption {
    height: 100%;
    position: relative;
}

.left-caption .bg-img {
    height: 100%;
    width: 100%;
    -o-object-fit: fill;
    object-fit: fill;
}

.left-caption .caption {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--black-50);
    color: var(--white-color);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 160px;
}

.left-caption .caption .text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
}

.login-bg {
    background: var(--assest-color);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    padding-bottom: 20px;
}

@media (max-height: 600px) {
    .login-bg {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}

.app-logo img {
    width: 180px;
    margin: 15px 0 20px;
}

.app-login-box {
    max-width: 410px;
    margin: 0 auto;
    width: 90%;
    padding: 30px;
    background: var(--white-color);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
}

.app-login-box .form-control {
    background: var(--assest-color);
}

.app-login-box .form-control:focus {
    background: var(--white-color);
}

@media (min-width: 1600px) {
    .counter-row {
        margin-bottom: 20px;
    }

    .table thead th,
    .table td {
        font-size: 16px;
    }

    .custom-tabs .nav-link,
    .summary-table-card .border-card {
        font-size: 16px;
    }

    .form-group label {
        font-size: 16px;
    }

    .custom-border-card .card-header {
        font-size: 20px;
    }
}

@media (max-width: 1280px) {
    .header .input-group {
        width: 280px;
    }
}

@media (max-width: 991px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.hide-sidebar {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        left: 0;
        z-index: 99;
        width: 280px;
    }

    .sidebar.hide-sidebar .side-toggle span:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .sidebar.hide-sidebar .side-toggle span:nth-child(2) {
        display: none;
    }

    .sidebar.hide-sidebar .side-toggle span:last-child {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -5px;
    }

    .right-content {
        margin-left: 0 !important;
    }

    .right-content .page-title {
        display: none;
    }

    .header {
        padding: 15px;
    }

    .header .title-control .side-toggle {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .header .side-logo {
        display: block;
        width: 160px;
    }

    .header .mobile-close-search {
        display: none;
    }

    .counter-row .col-md {
        padding-right: 5px;
        padding-left: 5px;
    }

    .page-title-sm {
        font-size: 26px;
        font-weight: 600;
        margin: -10px 0 20px;
        display: block;
        border-bottom: 1px solid var(--assest-color);
        padding-bottom: 5px;
    }

    .app-logo img {
        margin: 20px 0 10px;
    }
}

@media (max-width: 767px) {
    .btn-default {
        font-size: 14px;
    }

    .header .input-group {
        height: 45px;
        width: 45px;
        border-radius: 5px;
    }

    .header .input-group .input-group-text {
        padding: 7px;
    }

    .header .input-group .form-control {
        display: none;
    }

    .box-title {
        padding-bottom: 8px;
    }

    .box-title .title {
        font-size: 18px;
    }

    .avatar-control .avatar-img {
        height: 30px;
        width: 30px;
    }

    .table th,
    .table td {
        padding: 8px 5px;
    }

    .summary-table-card .border-card {
        padding: 10px 2px;
    }

    .summary-table-card .border-card .row .col {
        text-align: left;
    }

    .summary-table-card .border-card .row .col-12 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .summary-table-card .avatar-control {
        margin: 0 14px 10px;
    }

    .pagination {
        margin-top: 20px;
    }

    .inline-tabs {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
        margin-top: 0;
    }

    .inline-tabs::-webkit-scrollbar {
        display: none;
    }

    .inline-tabs .nav-link {
        padding: 8px 14px;
    }

    .app-right-btn {
        margin: 0 0 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .custom-border-card {
        padding: 16px 20px;
    }

    .custom-border-card .card-header {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .file-control {
        padding: 16px;
    }
}

@media (max-width: 567px) {
    .page-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .page-search .sorting {
        margin-top: 8px;
    }

    div.dataTables_wrapper div.dataTables_length label,
    div.dataTables_wrapper div.dataTables_filter label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child,
    div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
        padding: 0;
        overflow: auto;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: 15px;
    }
}

@media (max-width: 340px) {
    .header .side-logo {
        width: 120px;
    }
}

/* Image Upload Preview */
.avatar-upload {
    position: relative;
    max-width: 205px;
}

.avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
}

.avatar-edit input {
    display: none;
}

.avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    margin-right: 30px;
    margin-top: 125px;
    border-radius: 100%;
    background: var(--white-color);
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px var(--assest-color);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-edit input+label:hover {
    background: var(--assest-color);
    border-color: var(--body-color);
}

.avatar-edit input+label:after {
    content: "\f0ee";
    font-family: 'FontAwesome';
    color: var(--body-color);
    position: absolute;
    top: 130px;
    left: 0;
    right: 30px;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 10%;
}

.avatar-upload .avatar-preview>img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
}

.avatar-upload .avatar-preview>img:hover {
    transform: scale(1.05);
}

/* Image Upload Preview (Landscape) */
.landscape-preview {
    width: 220px !important;
    height: 120px !important;
}

/* Image Upload Preview (Landscape) */
.avatar-upload-landscape {
    position: relative;
    max-width: 265px;
}

.avatar-edit-landscape {
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 1;
}

.avatar-edit-landscape input {
    display: none;
}

.avatar-edit-landscape input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    margin-right: 30px;
    margin-top: 125px;
    border-radius: 100%;
    background: var(--white-color);
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px var(--assest-color);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-edit-landscape input+label:hover {
    background: var(--assest-color);
    border-color: var(--body-color);
}

.avatar-edit-landscape input+label:after {
    content: "\f0ee";
    font-family: 'FontAwesome';
    color: var(--body-color);
    position: absolute;
    top: 130px;
    left: 0;
    right: 30px;
    text-align: center;
    margin: auto;
}

.avatar-upload-landscape .avatar-preview-landscape {
    width: 220px;
    height: 120px;
    position: relative;
    border-radius: 10%;
}

.avatar-upload-landscape .avatar-preview-landscape>img {
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 10%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Loader */
#dvloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    background-color: var(--body-bg-color);
    z-index: 9999;
}

#dvloader img {
    max-width: 300px;
    max-height: 300px;
    z-index: 100;
}

/* btn Cancel */
.btn-cancel {
    background: var(--black-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 20px;
}

.btn-cancel:hover {
    color: var(--black-color);
    background: transparent;
    border-color: var(--black-color);
}

/* Edit-Delete btn */
.edit-delete-btn {
    border: none;
    cursor: pointer;
    outline: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px;
    border-radius: 5px;
    border: 2px dashed transparent;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.edit-delete-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--primary-color-dark);
    color: var(--primary-color-dark);
    box-shadow: 0 0 12px var(--primary-color-dark);
}

.edit-delete-btn:focus {
    outline: none;
    box-shadow: none;
}

.cart-bg {
    background-color: var(--assest-color);
}

/* Import File */
.import-file {
    color: var(--black-color);
}

.import-file::file-selector-button {
    border-radius: 4px;
    color: var(--partition-color);
    background-color: var(--assest-color);
    border: 1px solid var(--assest-color);
    height: 30px;
    cursor: pointer;
}

/* Dashboard Category */
.category-box {
    padding: 25px;
    background: var(--assest-color);
}

.category-box .f600 {
    font-weight: 600;
}

.category-box .box-border-0 {
    border: 0;
    padding-bottom: 0;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 100%;
    color: var(--partition-color);
    padding-left: 25px;
}

.category-image {
    max-height: 105px;
    height: 105px;
    width: 100%;
    border-radius: 8px;
    filter: blur(1.2px);
    -webkit-filter: blur(1.2px);
}

/* Side Menu Partition */
.partition {
    width: 100%;
    border-bottom: 3px dashed var(--partition-color);
    line-height: 0.1em;
    margin: 20px 0px;
}

.partition span {
    background: var(--assest-color);
    margin: 10px 0;
    padding: 0px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--partition-color);
}

/* Demo Mode Box */
.demo-mode-box {
    background: var(--primary-color-dark);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 6px 18px;

}

.demo-mode-box:hover {
    color: var(--primary-color-dark);
    background: transparent;
    border-color: var(--primary-color-dark);
}

/* Color Picker */
.colorpicker-component {
    display: flex;
    border: 1px solid var(--primary-color-dark);
    border-radius: 5px;
    overflow: hidden;
}

.colorpicker {
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.hexcolor {
    border: none;
    padding: 10px;
    width: 100px;
    outline: none;
}

/* Hide-Show Btn */
.show-btn,
.hide-btn,
.info-btn,
.pending-btn,
.approved-btn {
    font-weight: bold;
    font-size: 14px !important;
    padding: 6px 18px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px dashed transparent;
    outline: none;
    color: var(--white-color);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border 0.3s ease,
        box-shadow 0.3s ease;
}

.show-btn {
    background: var(--green);
}

.show-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--green);
    color: var(--green);
}

.hide-btn {
    background: var(--red);
}

.hide-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--red);
    color: var(--red);
}

.pending-btn {
    background: var(--warning);
}

.pending-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--warning);
    color: var(--warning);
}

.approved-btn {
    background: var(--blue);
}

.approved-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--blue);
    color: var(--blue);
}

.info-btn {
    background: var(--primary-color) !important;
}

.info-btn:hover {
    background: var(--white-color) !important;
    border: 2px dashed var(--primary-color) !important;
    color: var(--primary-color) !important;
}


.show-btn:focus,
.hide-btn:focus,
.info-btn:focus,
.pending-btn:focus,
.approved-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Custom-Card */
.custom-card {
    background-color: var(--assest-color);
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.custom-card .card-body h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}

.custom-card .card-body span {
    font-size: 1.2rem;
    color: var(--partition-color);
    font-weight: bold;
}

.custom-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.card-icon-primary {
    padding: 15px;
    border-radius: 50%;
    color: var(--assest-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color) !important;
}

.card-color-primary:hover {
    border-color: var(--primary-color-dark);
}

.card-color-primary .card-body {
    color: var(--primary-color-dark);
}

/* Earning-Card */
.card-earning {
    background-color: var(--assest-color);
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    width: 100%;
}

.card-align {
    display: flex;
    justify-content: space-between;
}

.earning-title {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: var(--partition-color);
}

.earning-amount {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color-dark);
}

.earning-divider {
    width: 2px;
    height: 60px;
    background-color: var(--body-color);
    margin: 0 15px;
}


/* Landscape Card */
.landscape-card {
    background-color: var(--assest-color) !important;
    padding: 8px;
    margin: 10px 0;
    border: 3px solid transparent;
}

.landscape-card:hover {
    border: 3px solid var(--primary-color);
}

.modal-content {
    background-color: var(--assest-color);
}

.modal-header {
    border-bottom: 2px solid var(--body-color);
}

.modal-title {
    color: var(--partition-color);
}

.modal-footer {
    border-top: 2px solid var(--body-color);

}

.wallet-image {
    height: 180px;
    width: 180px;
    border-radius: 10px;
}

.landscape-card-title {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landscape-card-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landscape-card-border {
    border-top: 2px dashed var(--primary-color) !important;
    margin: 10px 0px;
}

.landscape-card .ribbon-top-left {
    top: -3px;
    left: -3px;
}

.system-note {
    font-weight: 600;
    font-size: 16px;
    color: var(--partition-color);
}

#map {
    height: 355px;
    width: 700px;
    position: relative;
    overflow: hidden;
}

.year-block {
    margin-bottom: 15px;
}

.year-title {
    font-size: 25px;
    color: var(--partition-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color-dark);
    padding-bottom: 5px;
}

.month-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;

}

.month-card {
    background-color: var(--body-bg-color);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

}

.month-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.vacation-entry {
    border-left: 5px solid var(--primary-color-dark);
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
}

.vacation-entry:last-child {
    margin-bottom: 0;
}


/* Responsive */
@media (max-width: 992px) {
    .month-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .month-card {
        width: 100%;
    }
}

.badge {
    display: inline-block;
    padding: 10px 10px;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.badge-success,
.bg-success {
    color: var(--white-color);
    background: var(--success) !important;
}

.badge-danger,
.bg-danger {
    color: var(--white-color);
    background: var(--danger) !important;
}

.badge-warning,
.bg-warning {
    color: var(--white-color);
    background: var(--warning) !important;
}

/* Modal container */
.decision-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Modal content */
.decision-modal-content {
    background-color: var(--white-color);
    border-radius: 10px;
    width: 450px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close button */
.decision-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Modal Body */
.decision-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Icon Styling */
.decision-icon-img {
    width: 60px;
    height: 60px;
}

.decision-modal-body .modal-style {
    font: bold;
    font-size: 16px;
}

/* Error Text */
.decision-error-text {
    color: var(--red);
    font-size: 20px;
    font-weight: bold;
    margin: 20px 10px;
}

/* Success Text */
.decision-success-text {
    color: var(--green);
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
}

.schedule-group {
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--white-color);
    overflow: hidden;
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--assest-color);
    padding: 15px 20px;
    cursor: pointer;
}

.schedule-header input[type="date"] {
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}

.schedule-header label {
    color: var(--partition-color);
}

.remove-date-btn {
    background-color: var(--red);
    color: var(--white-color);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.schedule-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 20px;
}

.schedule-body.open {
    padding-top: 20px;
    padding-bottom: 20px;
    max-height: 1000px;
}

.slots-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slot-card {
    background: var(--white-color);
    padding: 12px;
    border: 1px solid var(--body-color);
    border-radius: 8px;
}

.slot-card label {
    color: var(--black-color);
}

.remove-slot-btn {
    background-color: var(--red);
    color: var(--white-color);
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.add-slot-btn,
.add-date-btn {
    background-color: var(--green);
    color: var(--white-color);
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;

}

.slot-times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.slot-times .badge {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 7px 11px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .slot-card {
        flex-direction: column;
    }
}

/*** Appointmet Details ***/
.profile-details-card {
    background: var(--assest-color);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    padding: 15px;
    margin-bottom: 20px;

}

.profile-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.profile-section {
    flex: 1 1 48%;
    display: flex;
    align-items: center;
    background-color: var(--body-bg-color);
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-weight: bold;
    font-size: 18px;
    margin: 4px 0;
}

.profile-location {
    color: #67757c;
    font-size: 14px;
}

.profile-contact {
    font-size: 14px;
    margin-top: 4px;
}


.appointment-card {
    background: var(--assest-color);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
}

.main-prescription-card {
    background: var(--assest-color);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
    padding: 16px;
    margin-bottom: 20px;

}

.appointment-left {
    flex: 2;
}

.appointment-left h5 {
    color: var(--partition-color);
}

.section-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--partition-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    background-color: var(--white-color);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: #6c757d;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

.notes {
    background: var(--assest-color);
    padding: 8px;
    border-left: 4px solid var(--primary-color-dark);
    border-radius: 4px;
    color: var(--partition-color);
}

.appointment-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.appointment-label {
    width: 200px;
    font-weight: 600;
    color: var(--partition-color);
}

.appointment-value {
    flex: 1;
    color: var(--partition-color);
}

.note-box {
    background: var(--body-bg-color);
    border-left: 4px solid var(--primary-color-dark);
    padding: 15px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--black-color);
    font-size: 15px;
    line-height: 1.6;
}

.attachments .file {
    display: inline-block;
    background: var(--body-bg-color);
    padding: 6px 12px;
    border-radius: 6px;
    margin: 5px 8px 5px 0;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.attachments a {
    color: var(--primary-color-dark);
    font-weight: 500;
}

.prescription-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

}

.prescription-card {
    flex: 0 0 calc(50% - 10px);
    /* Two in a row */
    border: 1px solid var(--primary-color-dark);
    border-radius: 10px;
    padding: 15px;
    background-color: var(--body-bg-color);
}

.prescription-section {
    margin-bottom: 15px;
}

.prescription-section h5 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 4px;
}

.prescription-section p {
    margin: 0;
}

.medicine-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.medicine-table th,
.medicine-table td {
    border: 1px solid var(--border-light);
    padding: 8px;
    text-align: left;
}


@media screen and (max-width: 768px) {
    .prescription-card {
        flex: 0 0 100%;
    }
}

.details-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--green);
    color: var(--white-color);
}

.price-box {
    background: var(--body-bg-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.price-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
    /* border-bottom: 1px solid var(--border-light); */
    padding-bottom: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
}

.price-value {
    font-weight: bold;
}

.status-badge {
    margin: 6px;
    display: inline-block;
    padding: 0.35em 0.75em;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-transform: uppercase;
    border-radius: 0.375rem;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
}

.status-badge.draft {
    background-color: color-mix(in srgb, var(--gray) 20%, white);
    color: color-mix(in srgb, var(--gray) 80%, black);

}

.status-badge.cancel {
    background-color: color-mix(in srgb, var(--danger) 20%, white);
    color: color-mix(in srgb, var(--danger) 80%, black);

}

.status-badge.approved {
    background-color: color-mix(in srgb, var(--green) 20%, white);
    color: color-mix(in srgb, var(--green) 80%, black);
}

.status-badge.completed {
    background-color: color-mix(in srgb, var(--blue) 20%, white);
    color: color-mix(in srgb, var(--blue) 80%, black);
}

.status-badge.absent {
    background-color: color-mix(in srgb, var(--red) 35%, white);
    color: color-mix(in srgb, var(--red) 65%, black);
}

.status-badge.pending {
    background-color: color-mix(in srgb, var(--warning) 20%, white);
    color: color-mix(in srgb, var(--warning) 80%, black);
}

.chart-btn-group {
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.chart-btn-group button {
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chart-btn-group button:hover {
    /* background-color: var(--bg-light-color); */
    /* color: var(--text-dark); */
}

.chart-btn-group button.active {
    background: var(--primary-color);
    color: var(--partition-color);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(78, 121, 167, 0.3);
}

.chart-btn-group button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(78, 121, 167, 0.5);
}

.package-info-title h6 {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color-dark);
}

.count-badge {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: bold;
    padding: 7px 20px;
    border-radius: 20px;
    line-height: 1;
    display: inline-block;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
}

.doctor-card {
    background-color: var(--assest-color);
    border-radius: 16px;
    transition: 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px;
    /* gap: 16px; */
    width: 100%;
}

.doctor-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.avatar-wrapper {
    flex-shrink: 0;
}

.avatar-wrapper img {
    width: 70px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 3px solid var(--border-default); */
}

.doctor-details {
    flex: 1;
    min-width: 0;
}

.doctor-name {
    font-size: 16px;
    font-weight: bold;
    word-break: break-word;
    color: var(--partition-color);
}

.doctor-fullname {
    font-size: 14px;
    font-weight: 500;
    word-break: break-word;
    color: var(--partition-color);
}

.rating-fees {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-weight: bold;
}

.rating-fees .badge {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
    white-space: nowrap;
}

/* ✅ Mobile (up to 767px) */
@media (max-width: 767.98px) {
    .doctor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .avatar-wrapper {
        margin-bottom: 12px;
    }

    .rating-fees {
        justify-content: center;
    }
}

/* ✅ Tablet Portrait (768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .doctor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rating-fees {
        justify-content: center;
    }
}

/* ✅ Tablet Landscape and small desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .doctor-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .rating-fees {
        justify-content: flex-start;
    }
}

/* ✅ Large desktop (1200px and up) */
@media (min-width: 1200px) {
    .doctor-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .rating-fees {
        justify-content: flex-start;
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

/* Hide the default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--body-color);
    transition: .4s;
    border-radius: 34px;
}

/* Slider before checked (inactive state) */
.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 3px;
    background-color: var(--white-color);
    transition: .4s;
    border-radius: 50%;
}

/* When checked */
input:checked+.slider {
    background: var(--primary-color);

}

/* Move the slider when checked */
input:checked+.slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.add-more-pading {
    padding-top: 35px;
}

.medicine-card {
    /* border: 1px solid var(--border-default); */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: var(--assest-color);
}

.medicine-info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
    background: var(--body-bg-color);
    /* border: 1px solid var(--border-light); */
    padding: 15px;
    border-radius: 10px;
}

.medicine-image-wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    /* border: 1px solid var(--border-default); */
    background-color: var(--assest-color);
}

.medicine-meta {
    flex-grow: 1;
}

.medicine-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    /* color: var(--text-dark); */
}

.meta-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.meta-details-row .left {
    font-size: 14px;
    color: var(--text-dark);
}

.meta-details-row .right {
    display: flex;
    align-items: center;
    gap: 10px;
}


/** Medicine Grid Layout css **/
.profile-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.profile-product-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    position: relative;
}

.profile-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.profile-product-card:hover {
    transform: scale(1.05);
}

.profile-product-name {
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.profile-product-price {
    /* color: var(--text-muted); */
    font-weight: bold;
}

.action-buttons {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    gap: 10px;

}

.profile-product-card:hover .action-buttons {
    display: flex;

}

.action-buttons .action-btn {
    padding: 5px 10px;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed transparent;
    /* ✅ prevents jump */
    transition: none;
    /* ✅ optional — removes animation */
}

.action-buttons .action-btn:hover {
    background: var(--white-color);
    border: 2px dashed var(--primary-color-dark);
    color: var(--primary-color-dark);
    box-shadow: 0 0 12px var(--primary-color-dark);
}

.order-details {
    border-radius: 8px;
    max-width: 100%;
}

.order-details .order-badge {
    color: var(--white-color);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.order-number strong {
    color: var(--partition-color);
}

.order-number p {
    color: var(--partition-color);
    font-size: 24px;
    margin: 0;
}

.order-date-invoice {
    display: flex;
    gap: 15px;
    align-items: center;
}


.order-invoice-btn {
    background-color: var(--red);
    color: var(--white-color);
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    outline: none;
}

.order-invoice-btn:hover {
    background-color: color-mix(in srgb, var(--red) 80%, black);
    transform: translateY(-1px);
}

.order-invoice-btn:focus-visible {
    outline: 2px solid var(--white-color);
    outline-offset: 2px;
}

.order-invoice-btn:focus:not(:focus-visible) {
    outline: none;
}

.order-info-section {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.order-info-cards {
    background-color: var(--assest-color);
    /* border: 1px solid var(--border-light); */
    border-radius: 8px;
    padding: 15px;
    width: 50%;
}

.order-info-cards h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--partition-color);
}

.order-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-info-text {
    flex: 1;
    padding-right: 10px;
    color: var(--partition-color);
}

.order-info-text p {
    margin: 5px 0;
}

.order-info-cards img {
    border-radius: 4px;
    width: 65px;
    height: 65px;
}

.order-summary {
    background-color: var(--body-bg-color);
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    font-family: Arial, sans-serif;

}

.order-summary h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-item.total {
    font-weight: bold;
    font-size: 16px;
}


/* Container holding the tracking steps */
.order-tracking {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 20px;
    padding: 0 10px;
}

.step {
    display: flex;
    flex-direction: column;
    position: relative;
}

.step .icon {
    background-color: var(--body-color);
    color: var(--partition-color);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.step .icon i {
    font-size: 35px;
}

.step.active .icon {
    background-color: var(--primary-color-dark);
    color: var(--white-color);
}

.step .label {
    text-align: center;
    margin-top: 10px;
}

.step .label p {
    font-weight: bold;
    margin: 0;
    color: var(--partition-color);
}

.step .label span {
    font-size: 13px;
    font-weight: 500;
    color: var(--partition-color);
}

.step .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 400%;
    height: 3px;
    background-color: inherit;
    z-index: 0;
}

.step:last-child .icon::before {
    display: none;
}

.delivery-status p {
    margin: 0;
    font-size: 17px;
    font-weight: bold;
    color: var(--partition-color);
}

.delivery-status strong {
    color: var(--partition-color);
}

hr {
    border-top: 1px solid var(--primary-color-dark);
    margin: 10px 0;
}

.general-badge {
    font-weight: bold;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.general-pending {
    background-color: var(--warning);
    color: var(--white-color);
}

.general-placed {
    background-color: var(--cyan);
    color: var(--white-color);
}

.general-preparing {
    background-color: var(--orange);
    color: var(--white-color);
}

.general-ontheway {
    background-color: var(--blue);
    color: var(--white-color);
}

.general-delivered {
    background-color: var(--green);
    color: var(--white-color);
}

.general-rejected {
    background-color: var(--red);
    color: var(--white-color);
}

.header-profile {
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--partition-color);
}

.header-profile:hover .header-profile-name {
    color: var(--primary-color);
}

.header-profile-image {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.header-profile-image:hover {
    transform: scale(1.05);
}

.header-profile-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--partition-color);
    white-space: nowrap;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .header-profile-name {
        display: none;
    }
}

/** Bed Allocation css **/
.appointment-box {
    background-color: var(--body-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 24px 32px;
    transition: box-shadow 0.3s ease;
}

.appointment-box:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.appointment-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    /* border-bottom: 1px solid var(--border-light); */
    padding-bottom: 14px;
}

.appointment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* border-bottom: 1px dashed var(--border-light); */
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-box-label {
    font-weight: 500;
    color: var(--white-color);
    font-size: 16px;
}

.appointment-box-value {
    font-weight: 600;
    color: var(--white-color);
    font-size: 16px;
    text-align: right;
    max-width: 60%;
    word-wrap: break-word;
}

.truncate-text {
    display: inline-block;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

/* Installation */
.list-group-item {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    background-color: transparent;
}

.form-control {
    background-color: var(--white-color);
    color: var(--title-color);
}

.install-bg-img {
    text-align: center;
}

.install-bg-img img {
    max-width: 100%;
    height: auto;
}

.install-title {
    font-size: 42px;
    font-weight: bold;
}

.install_sub_title {
    font-size: 24px;
}

.install_text {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.install-list li {
    font-size: 20px;
    margin-bottom: 10px;
}

.install-list li:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.install-card {
    margin-left: 100px;
    margin-right: 100px;
}

@media (max-width: 1024px) {
    .install-bg-img {
        display: none !important;
    }
}

.install-footer {
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--black-color);
    background: var(--primary-color);
}

.install-footer a {
    color: var(--white-color);
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

.install-footer a:hover {
    color: var(--black-color);
}

.install-social-icons {
    margin-top: 10px;
}

.install-social-icons a {
    color: var(--white-color);
    font-size: 20px;
    text-decoration: none;
}

.install-social-icons a:hover {
    color: var(--black-color);
}

.install-footer .content {
    position: relative;
    z-index: 1;
}

/* btn Install */
.btn-install {
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 40px;
}

.btn-install:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}

/* btn Install Cancel */
.btn-install-cancel {
    background: var(--black-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 40px;
}

.btn-install-cancel:hover {
    color: var(--black-color);
    background: transparent;
    border-color: var(--black-color);
}


/* Container */
/* .notif-wrapper {
    position: relative;
    display: inline-block;
    font-family: var(--font);
    font-size: 14px;
    user-select: none;
}

.notif-bell {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.notif-bell:hover,
.notif-bell:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;

}

.bell-icon {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    transition: stroke 0.3s ease;
    color: var(--partition-color);
}

.notif-count {
    position: absolute;
    top: 3px;
    right: 3px;
    background: color-mix(in srgb, var(--red) 80%, white);
    color: var(--white-color);
    font-weight: 700;
    font-size: 11px;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    user-select: none;
    pointer-events: none;
    transform-origin: center;
    transition: transform 0.3s ease;
    will-change: transform;
    min-width: 20px;
    text-align: center;
}

.notif-dropdown {
    position: absolute;
    right: 0;
    margin-top: 12px;
    width: 360px;
    max-height: 460px;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-default);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    font-size: 14px;
    color: var(--text-dark);
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.notif-dropdown[hidden] {
    display: none;
    opacity: 0;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-default);
    font-weight: 600;
    font-size: 16px;
}


.mark-all-read-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 6px 10px;
    border-radius: 6px;
}
.mark-all-read-btn:hover,
.mark-all-read-btn:focus {
    background-color: var(--bg-hover-color);
    color: var(--black-50);
    outline: none !important;


}

.notif-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 380px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.notif-list::-webkit-scrollbar {
    width: 8px;
}

.notif-list::-webkit-scrollbar-track {
    background: transparent;
}

.notif-list::-webkit-scrollbar-thumb {
    background-color: var(--border-light);
    border-radius: 20px;
    border: 2px solid transparent;
}

.notif-item {
    display: flex;
    gap: 12px;
    margin-top: 7px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-default);
    cursor: pointer;
    transition: background-color 0.25s ease;
    white-space: normal;
    align-items: center;
    position: relative;
    background-color: var(--white-color);
    border-left: 4px solid transparent;
}

.notif-item:hover,
.notif-item:focus {
    background-color: color-mix(in srgb, var(--blue) 10%, white);
    outline: none;
}

.notif-item.unread {
    background-color: var(--bg-highlight);
    border-left-color: var(--primary-color);
}

.notif-item.unread .notif-title-time strong {
    font-weight: 700;
    color: var(--black-color);
}

.notif-item.unread::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.notif-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--gray);
}

.notif-title-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    gap: 12px;
}

.notif-time {
    font-size: 12px;
    color: color-mix(in srgb, var(--text-muted) 70%, white);
    white-space: nowrap;
    flex-shrink: 0;
}

.notif-desc {
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-muted);
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.3em * 2);
}

.notif-read-mark {
    flex-shrink: 0;
    font-size: 16px;
    color: var(--green-color);
    margin-left: 10px;
    align-self: center;
}

.notif-footer {
    padding: 14px 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    background-color: var(--bg-light-color);
}

.view-all-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

@media (max-width: 400px) {
    .notif-dropdown {
        width: 90vw;
        max-height: 60vh;
        right: 5vw;
    }
}

.toast-popup {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 280px;
    font-family: var(--font);
    font-size: 14px;
    word-wrap: break-word;
}

.toast-popup.visible {
    opacity: 1;
    transform: translateY(0);
} */


/* # sourceMappingURL=style.css.map */