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

:root {
    /* Legacy (keep for backward compat) */
    --font: "Rubik", sans-serif;
    --white-color: #fff;
    --black-color: #000;
    --black-50: rgba(0, 0, 0, 0.6);
    --body-color: #1b1b1b;
    --green-color: #058f00;
    --red-color: #e3000b;
    /* Core Color System */
    --primary-color: #D62828;
    --assest-color: #e9ecef;
    --primary-light: #d628281a;
    --primary-hover: #d62828d9;
    --text-dark: #2d2d2d;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --green-50: rgba(5, 143, 0, 0.1);
    --red-50: rgba(227, 0, 11, 0.1);

    /* Layout */
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 72px;
    --header-height: 64px;

    /* Elevation */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;

    /* Transition */
    --transition: all 0.22s ease;
}

html,
body {
    height: 100%;
    overflow: auto;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--body-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);
}
.text-gray {
    color: var(--body-color);
    opacity: 0.6;
}
.btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}
.btn-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    display: inline-block;
    padding: 0 0 0px;
    border-radius: 0;
    font-size: 14px;
}
.btn-default {
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-color);
    border: 1.5px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 9px 22px;
    line-height: 1;
}
.btn-default:hover {
    color: var(--white-color);
    background: var(--primary-hover);
    border-color: transparent;
}
.mw-120 {
    min-width: 120px;
}
.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: 1px solid var(--assest-color);
    padding: 7px 11px;
    font-size: 14px;
}
.dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}
.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: var(--assest-color);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 9px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    flex-shrink: 0;
    gap: 3px;
}
.side-toggle:hover {
    background: var(--primary-light);
}
.side-toggle:hover span {
    background: var(--primary-color);
}
.side-toggle span {
    background: var(--text-muted);
    width: 18px;
    height: 2px;
    border-radius: 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    display: block;
}
.side-toggle span:nth-child(2) {
    width: 13px;
    align-self: flex-start;
}
.custom-control .custom-control-label::before {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}
.custom-control .custom-control-input:checked~.custom-control-label::after {
    border-radius: 3px;
    background-color: var(--primary-color);
}
.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label:after {
    border-radius: 50% !important;
}
/* START: SIDEBAR */
.sidebar {
    background: var(--white-color);
    box-shadow: 2px 0 12px var(--shadow-sm);
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 280px;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 100;
}
.sidebar::-webkit-scrollbar {
    width: 4px;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--primary-light) !important;
    border-radius: 50px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
@media (min-width: 1680px) {
    .sidebar {
        width: 300px;
    }
}
.sidebar.hide-sidebar {
    width: 72px;
    padding: 0;
}
/* ---- Collapsed Sidebar: Desktop ≥ 1024px ---- */
@media (min-width: 1024px) {
    /* Center toggle button */
    .sidebar.hide-sidebar .side-head {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 18px 10px;
    }
    /* Hide logo, section labels, and link text */
    .sidebar.hide-sidebar .side-logo,
    .sidebar.hide-sidebar .partition,
    .sidebar.hide-sidebar .side-menu > li > a > span {
        display: none !important;
    }
    /* Icon-only nav items — centered, pill shape */
    .sidebar.hide-sidebar .side-menu > li > a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 12px 0;
        margin: 3px 10px;
        border-left: none;
        border-radius: var(--radius-sm);
        width: auto;
        height: auto;
    }
    .sidebar.hide-sidebar .side-menu > li > a .menu-icon {
        margin-right: 0;
        font-size: 16px;
        width: 18px;
    }
    /* Hide dropdown caret in collapsed mode */
    .sidebar.hide-sidebar .side-menu .dropdown-toggle::after {
        display: none;
    }
    /* Collapsed submenu container */
    .sidebar.hide-sidebar .side-menu .dropdown-menu {
        display: none;
        margin: 2px 0;
        padding: 4px 0;
        border: none;
    }
    /* Show dropdown */
    .sidebar.hide-sidebar .side-menu .dropdown.show .dropdown-menu,
    .sidebar.hide-sidebar .side-menu .dropdown-menu.show {
        display: block;
    }
    /* Submenu items (icon only, centered) */
    .sidebar.hide-sidebar .side-menu .side-submenu a.dropdown-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        margin: 2px 10px;
        border-left: none;
        border-radius: var(--radius-sm);
    }
    /* Hide text */
    .sidebar.hide-sidebar .side-menu .side-submenu a.dropdown-item > span {
        display: none;
    }
    /* Icon adjust */
    .sidebar.hide-sidebar .side-menu .side-submenu .submenu-icon {
        margin: 0;
        width: 18px;
        font-size: 15px;
    }
    /* Active item: light bg, no left border */
    .sidebar.hide-sidebar .side-menu > li.active > a {
        background: var(--primary-light);
        color: var(--primary-color);
        border-left: none;
        border-radius: var(--radius-sm);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .sidebar.hide-sidebar .side-menu > li.active > a .menu-icon {
        color: var(--primary-color);
    }
    /* Hover: no left border */
    .sidebar.hide-sidebar .side-menu > li > a:hover {
        border-left: none;
        border-radius: var(--radius-sm);
    }
    /* Remove old tick indicator */
    .sidebar.hide-sidebar .side-menu .side_line.active a::after {
        display: none;
    }
}
@media (min-width: 1680px) {
    .sidebar.hide-sidebar .side-head {
        padding: 18px 10px;
    }
}
.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;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--white-color);
    z-index: 10;
}
.sidebar .side-logo {
    width: auto;
    max-width: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar .side-logo h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar .side-menu {
    padding: 10px 0 24px;
    list-style: none;
    margin: 0;
}
/* ---- Base fallback for any sidebar link not covered by specific rules ---- */
.sidebar .side-menu a {
    color: var(--text-dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    margin: 1px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
}
.sidebar.hide-sidebar .side-menu .side_line.active a:after {
    display: none;
}
.sidebar .side-menu .side_line.active a:after {
    content: none;
}
.sidebar .side-menu a .menu-icon {
    margin-right: 12px;
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.sidebar .side-menu .dropdown-menu a .submenu-icon {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    flex-shrink: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
/* ---- Hover: top-level only ---- */
.sidebar .side-menu > li > a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.sidebar .side-menu > li > a:hover .menu-icon {
    color: var(--primary-color);
}
/* ---- Active: top-level direct nav items only (not submenu) ---- */
.sidebar .side-menu > li.active > a {
    background: var(--primary-light);
    border-radius: 0;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600 !important;
}
.sidebar .side-menu > li.active > a .menu-icon {
    filter: none;
    color: var(--primary-color);
}
/* ---- Dropdown Arrow ---- */
.sidebar .side-menu .dropdown-toggle::after {
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.45;
    -webkit-transition: -webkit-transform var(--transition), opacity var(--transition);
    transition: transform var(--transition), opacity var(--transition);
}
/* Rotate arrow when parent dropdown is active or open (Bootstrap adds .show) */
.sidebar .side-menu li.dropdown.active .dropdown-toggle::after,
.sidebar .side-menu li.show .dropdown-toggle::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    opacity: 0.9;
}
/* ---- Submenu Container ---- */
.sidebar .side-menu .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    float: none;
    background: transparent;
    margin: 0;
    padding: 4px 0;
    border: none;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    z-index: 0;
}
/* NOTE: Bootstrap .dropdown-item padding/bg overrides are handled
   by .side-submenu a.dropdown-item rules below (higher specificity) */
.right-content {
    margin-left: 280px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
/* ==============================
   SUBMENU LINKS
   Selector: .sidebar .side-menu .side-submenu a.dropdown-item
   Specificity: 0,0,4,1  — wins over:
     • Bootstrap .dropdown-item             (0,0,1,0)
     • .sidebar .side-menu a                (0,0,2,1)
     • old .dropdown-menu .dropdown-item    (0,0,4,0)  ← the bug-causing rule we removed
   ============================== */
.sidebar .side-menu .side-submenu a.dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 9px 20px 9px 46px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    border-left: 3px solid transparent;
    border-bottom: none;
    border-radius: 0;
    white-space: normal;
    line-height: 1.4;
    margin: 0;
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    text-decoration: none;
}
/* Submenu icon */
.sidebar .side-menu .side-submenu a.dropdown-item .submenu-icon {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
    -webkit-transition: color var(--transition);
    transition: color var(--transition);
}
/* Submenu hover / focus */
.sidebar .side-menu .side-submenu a.dropdown-item:hover,
.sidebar .side-menu .side-submenu a.dropdown-item:focus {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    text-decoration: none;
}
.sidebar .side-menu .side-submenu a.dropdown-item:hover .submenu-icon,
.sidebar .side-menu .side-submenu a.dropdown-item:focus .submenu-icon {
    color: var(--primary-color);
}
/* Submenu active — li.side_line.active > a.dropdown-item
   Specificity: 0,0,5,1  (highest) */
.sidebar .side-menu .side-submenu li.side_line.active a.dropdown-item {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}
.sidebar .side-menu .side-submenu li.side_line.active a.dropdown-item .submenu-icon {
    color: var(--primary-color);
}
@media (min-width: 1680px) {
    .right-content {
        margin-left: 300px;
    }
}
/* END: SIDEBAR */
.right-content.right-content-0 {
    margin-left: 72px;
}
.right-content.right-content-0 .header .title-control .side-toggle {
    display: none;
}
/* START: HEADER */
.header {
    position: sticky;
    -webkit-position: -webkit-sticky;
    top: 0;
    background: var(--white-color);
    z-index: 50;
    height: 64px;
    padding: 0 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    -webkit-box-shadow: var(--shadow-xs);
    box-shadow: var(--shadow-xs);
}
@media (min-width: 1680px) {
    .header {
        padding: 0 32px;
    }
}
.header .title-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.header .title-control .side-toggle {
    display: none;
}
.header .page-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
}
.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;
    gap: 8px;
    -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: 38px;
    width: 38px;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-left: 0;
    background: var(--assest-color);
    border: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--text-dark);
}
.header .head-control .head-btn:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}
.header .head-control .head-btn i {
    font-size: 16px;
}
/* END: HEADER */
.avatar-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.body-content {
    padding: 24px;
    min-height: calc(100vh - 64px);
    background: var(--assest-color);
}
.box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: 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(--border-color);
    padding-bottom: 12px;
    margin-top: 16px;
    margin-bottom: 4px;
}
.box-title .title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 4px 0;
}
.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: 40px;
    width: 40px;
    border-radius: 50%;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--assest-color);
}
.table {
    border-color: var(--assest-color);
    color: var(--body-color);
    min-width: 650px;
}
.table thead th {
    font-size: 14px;
    font-weight: 600;
    border-top: 0;
    border-bottom: 1px solid var(--assest-color);
    background-color: var(--assest-color);
}
.table td {
    font-size: 14px;
    border-bottom: 1px solid var(--assest-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(--assest-color);
}
.dot {
    height: 8px;
    width: 8px;
    background: var(--red-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
/* UPDATED */
.custom-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
    margin: 20px 0;
    padding: 5px;
    background: var(--white-color);         /* UPDATED: visible against --assest-color page bg */
    border-radius: 100px;
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);           /* NEW: lifts track off the page */
}
/* UPDATED */
.custom-tabs li.nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}
/* UPDATED */
.custom-tabs .nav-link {
    display: block;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);               /* UPDATED: softer inactive color */
    padding: 8px 16px;                      /* UPDATED: balanced pill padding */
    white-space: nowrap;                    /* NEW: prevent label wrapping */
    -webkit-transition: var(--transition);
    transition: var(--transition);          /* NEW: smooth state changes */
}
/* NEW */
.custom-tabs .nav-link:hover:not(.active) {
    background: var(--primary-light);       /* NEW: theme red tint on hover */
    color: var(--primary-color);
}
/* UPDATED */
.custom-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);              /* UPDATED: explicit white, not Bootstrap default */
    font-weight: 600;                       /* NEW: bolder active label */
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);           /* NEW: active pill stands out */
}
.summary-table-card .border-card {
    padding: 10px;
    border: 1px solid var(--assest-color);
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
.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;
}
.artist-row {
    margin: 0 -6px;
}
.artist-row [class*="col-"] {
    padding: 0 6px;
    margin-bottom: 12px;
}
.artist-grid-card {
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-align: left;
}
.artist-grid-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.artist-card-img {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: var(--assest-color);
}
.artist-card-img.artist-card-img-restaurant {
    height: 160px;
}
.artist-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.artist-grid-card:hover .artist-card-img img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}
.artist-card-body {
    padding: 10px 12px 12px;
}
.artist-grid-card .name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
    display: block;
}
.artist-card-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.artist-card-rating .fa-star {
    color: #f59e0b;
    font-size: 11px;
}
.artist-grid-card .post {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 8px;
}
.artist-grid-card .detanils {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.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(--assest-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: var(--white-color);
    padding: 2px 12px;
    border-radius: 8px;
}
.page-search .sorting label {
    min-width: 60px;
    margin: 0;
    font-weight: 600;
}
.add-video-btn {
    height: calc(100% - 30px);
    background: var(--assest-color);
    border: 1px solid var(--assest-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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 15px 0;
    width: 100%;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    padding: 25px;
    color: var(--body-color) !important;
}
.add-video-btn .icon {
    margin-bottom: 15px;
}
.video-card {
    padding: 5px;
    border: 1px solid var(--assest-color);
    border-radius: 5px;
    margin: 15px 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.video-card:hover {
    -webkit-box-shadow: 0 15px 35px var(--assest-color);
    box-shadow: 0 15px 35px var(--assest-color);
}
.video-card:hover .play-btn,
.video-card:hover .overlap-control,
.video-card:hover .play-btn-top {
    display: block;
}
.video-card .card-img-top {
    border-radius: 5px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
}
.video-card .play-btn {
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
}
.video-card .card-body {
    padding: 15px 10px;
    position: relative;
}
.video-card .card-body .dropdown {
    position: absolute;
    right: 10px;
    top: 10px;
}
.video-card .card-body .dropdown .dropdown-menu {
    top: auto !important;
    bottom: 100%;
}
.video-card .card-body .dropdown .head-btn {
    padding: 5px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.video-card .card-body .dropdown .dropdown-item {
    font-weight: 500;
}
.video-card .card-body .dropdown .dropdown-item img {
    height: 18px;
    width: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
}
.video-card .card-body .card-title {
    padding-right: 10px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.video-card .card-body .card-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.video-card .card-body .card-details p {
    margin: 0;
    font-weight: 500;
    color: var(--assest-color);
}
.video-card .card-body .card-details p.tag {
    color: var(--body-color);
}
.video-card .play-btn-top {
    position: absolute;
    right: 00px;
    top: 00px;
    background: transparent;
    padding: 0;
    display: none;
}
.video-card .play-btn-top img {
    width: 45px;
}
.video-card .overlap-control {
    position: absolute;
    right: 10px;
    bottom: -5px;
    display: none;
}
.video-card .overlap-control .btn {
    background: var(--assest-color);
    padding: 2px 6px;
    border-radius: 10px;
}
.video-card .overlap-control .btn .dot-icon {
    height: 16px;
    width: 16px;
    -o-object-fit: contain;
    object-fit: contain;
    color: var(--primary-color) !important;
}

.pagination {
    padding: 5px;
    border: 1px solid var(--assest-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(--assest-color) !important;
    margin: 0 5px;
    border-radius: 50px !important;
    color: var(--body-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;
}
/* UPDATED */
.inline-tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;                        /* UPDATED: responsive wrapping on desktop */
    position: relative;
    z-index: 2;
}
.inline-tabs li.nav-item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
/* UPDATED */
.inline-tabs .nav-link {
    padding: 8px 18px;                      /* UPDATED: tighter modern padding */
    white-space: nowrap;                    /* NEW: consistent with custom-tabs */
}
.app-right-btn {
    text-align: right;
    margin-top: -60px;
    margin-bottom: 30px;
}
.custom-border-card {
    -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(--assest-color);
    padding-bottom: 15px;
}
.custom-border-card .card-body {
    padding: 18px 0 10px;
}
.form-group label {
    font-weight: 500;
    color: var(--body-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);
}
.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(--assest-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(--assest-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 12px;
    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;
}
.left-caption {
    height: 100%;
    position: relative;
}
.left-caption .bg-img {
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
}
.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);
    min-height: 100vh; 
    position: relative;
    -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;
    display: flex;
    justify-content: center;
}
.login-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* fills page like background */
    z-index: -1;        /* send behind login card */
}
.install-bg {
    background: var(--white-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;
}
@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) {
    .db-color-card {
        padding: 25px 25px 15px;
    }
    .db-color-card .card-icon {
        height: 60px;
    }
    .db-color-card .counter {
        margin: 45px 0 0;
        font-size: 52px;
    }
    .db-color-card .counter span {
        font-size: 22px;
    }
    .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;
    }
    .artist-grid-card .name {
        font-size: 13px;
    }
    .artist-grid-card .post {
        font-size: 13px;
    }
    .artist-grid-card .details {
        font-size: 13px;
    }
    .suggested-video .poster-img {
        width: 160px;
        height: 100px;
        border-radius: 20px;
    }
    .suggested-video .video-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 10px;
    }
    .suggested-video .details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .video-card .card-img-top {
        height: 180px;
    }
    .video-card .card-body .card-title {
        font-size: 18px;
    }
    .video-card .card-body .card-details p {
        font-size: 16px;
    }
    .video-card .play-btn-top img {
        width: 60px;
    }
    .form-group label {
        font-size: 16px;
    }
    .custom-border-card .card-header {
        font-size: 20px;
    }
    .custom-border-card .badge-header {
        font-size: 20px;
    }
}
@media (min-width: 1800px) {
    .db-color-card {
        margin: 0 10px;
        padding: 35px 35px 25px;
    }
    .db-color-card .card-icon {
        height: 60px;
    }
    .db-color-card .counter {
        margin: 54px 0 0;
        font-size: 52px;
    }
    .db-color-card .counter span {
        font-size: 22px;
    }
}
@media (max-width: 1280px) {
    .header .input-group {
        width: 280px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .db-color-card .counter {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 20px 0 0;
    }
    .db-color-card .counter span {
        width: 100%;
    }
}
@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;
    }
    .db-color-card {
        margin-bottom: 10px;
        padding: 12px 20px;
    }
    .db-color-card:before {
        height: 170px;
        width: 170px;
    }
    .box-title {
        padding-bottom: 8px;
    }
    .box-title .title {
        font-size: 14px;
    }
    .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;
    }
    /* UPDATED */
    .inline-tabs {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;                  /* UPDATED: scroll on small screens */
        overflow: auto;
        margin-top: 0;
    }
    .inline-tabs::-webkit-scrollbar {
        display: none;
    }
    /* UPDATED */
    .inline-tabs .nav-link {
        padding: 7px 12px;                  /* UPDATED: compact mobile padding */
        font-size: 12px;                    /* NEW: fits more tabs in scroll view */
    }
    .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;
    }
    .custom-border-card .badge-header {
        font-size: 18px;
        padding-bottom: 12px;
    }
    .file-control {
        padding: 16px;
    }
}
@media (max-width: 567px) {
    .db-color-card .counter {
        margin: 20px 0 0;
    }
    .artist-grid-card .name {
        font-size: 12px;
    }
    .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;
    border-radius: 10%;
    background-repeat: no-repeat;
    background-position: center;
}
/* 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;
}
/* Video Ribbon */
.ribbon {
    width: 125px;
    height: 125px;
    overflow: hidden;
    position: absolute;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 5px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    font: 700 18px/1 'Lato', sans-serif;
    text-transform: uppercase;
    text-align: center;
}
.ribbon-top-left {
    top: -10px;
    left: -10px;
}
.ribbon-top-left::before {
    top: 0;
    right: 0;
}
.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}
.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}
/* 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(--black-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: 14px;
    font-weight: 600;
    color: var(--white-color);
    border: 1.5px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 9px 22px;
    line-height: 1;
}
.btn-cancel:hover {
    color: var(--white-color);
    background: var(--black-color);
    border-color: transparent;
}
/* 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);
}
/* Edit-Delete btn */
.edit-delete-btn {
    cursor: pointer;
    outline: none;
    background: var(--primary-light) !important;
    color: var(--primary-color);
    padding: 7px 8px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.edit-delete-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white-color);
}
.edit-delete-btn:focus {
    outline: none;
    box-shadow: none;
}
.cart-bg {
    background-color: var(--assest-color);
}
/* Import File */
.import-file{
    background-color: var(--assest-color);
    color: var(--black-color);
}
.import-file::file-selector-button{
    border-radius: 4px;
    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(--white-color);
}
.category-image {
    max-height: 105px;
    height: 105px;
    width: 100%;
    border-radius: 8px;
    filter: blur(1.2px);
    -webkit-filter: blur(1.2px);
}
/* Dashboard Hashtag */
.hashtag-card {
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--white-color);
}
.hashtag-card>.row {
    margin: 0;
}
.hashtag-card>.row .col,
.hashtag-card>.row .col-2
.hashtag-card>.row .col-10 {
    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: start;
}
/* Dashboard Artist */
.artist-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.artist-image {
    height: 100px;
    width: 100%;
    border-radius: 50px;
}
@media (max-width: 1440px) {
    .artist-image {
        height: 70px;
        border-radius: 10px;
    }
}
@media (max-width: 1260px) {
    .artist-image {
        height: 50px;
        border-radius: 5px;
    }
}
/* Side Menu Partition */
.partition {
    width: 100%;
    border-bottom: none;
    line-height: 1;
    margin: 20px 0 6px;
    padding: 0 20px;
}
.partition span {
    background: transparent;
    padding: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
/* Demo Mode Box */
.demo-mode-box {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 4px 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.demo-mode-box:hover {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
/* Color Picker */
.colorpicker-component {
    display: flex;
    border: 1px solid var(--primary-color);
    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;
}
/* Installation */
.list-group-item {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    background-color: transparent;
}
.dropdown-menu, .card {
    background-color: var(--white-color);
    border: none;
}
.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: 50px;
    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: black;
    background-color: 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;
}
/* Hide-Show Btn */
.show-btn,
.hide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.4;
    transition: all 0.2s ease;
}
.show-btn {
    background: var(--green-color);
    color: var(--white-color);
    border-color: var(--green-color);
}
.show-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    filter: brightness(0.95);
}
.hide-btn {
    background: var(--red-color);
    color: var(--white-color);
    border-color: var(--red-color);
}
.hide-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    filter: brightness(0.95);
}
.show-btn:focus,
.hide-btn:focus {
    outline: none;
    box-shadow: none;
}
/* Online Toggle Switch — reusable across modules */
.online-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    margin: 0;
    vertical-align: middle;
}
.online-toggle-track {
    position: relative;
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: var(--red-color);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    flex-shrink: 0;
    box-shadow: inset 0 1px 3px var(--shadow-lg);
}
.online-toggle.online-on .online-toggle-track {
    background: var(--green-color);
}
.online-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white-color);
    box-shadow: 0 1px 4px var(--shadow-lg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}
.online-toggle.online-on .online-toggle-thumb {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
.online-toggle-text {
    font-size: 13px;
    font-weight: 600;
    min-width: 46px;
    color: var(--red-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.online-toggle.online-on .online-toggle-text {
    color: var(--green-color);
}
/* Custom-Card — Stat card used in dashboard, finance reports, restaurant panel */
.custom-card {
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.custom-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}
.custom-card .card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    gap: 16px;
}
.custom-card .card-body h3 {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}
.custom-card .card-body span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}
.card-icon-primary {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.custom-card:hover .card-icon-primary {
    background: var(--primary-color);
    color: var(--white-color);
}
.card-color-primary:hover {
    border-color: var(--primary-color);
}
.card-color-primary .card-body {
    color: var(--text-dark);
}
.db-stat-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
    min-width: 0;
}
/* Notification Configuration Check Box */
.toggle-input:checked+.toggle-label {
    background-color: var(--green-color);
}
.toggle-label {
    display: inline-block;
    width: 60px;
    height: 30px;
    position: relative;
    background-color: #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.toggle-input:checked+.toggle-label::after {
    transform: translateX(30px);
}
.toggle-label::after {
    content: '';
    width: 26px;
    height: 26px;
    position: absolute;
    top: 2px;
    left: 2px;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.toggle-input {
    display: none;
}
.custom-checkbox {
    width: 20px;
    height: 20px;
}
/* START: SELECT2 OVERRIDES */
.select2-container .select2-selection--single {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: var(--radius-md);
    padding: 8px;
    font-size: 14px;
    height: auto !important;
}
.select2-container .select2-selection--multiple {
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: var(--radius-md);
    padding: 8px;
    font-size: 14px;
    height: auto !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--primary-color) !important;
}
/* END: SELECT2 OVERRIDES */

/* START: HEADER DROPDOWN REFINEMENTS */
.header .head-control .dropdown-menu {
    min-width: 180px;
    border-radius: var(--radius-md);
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 8px;
    margin-top: 6px;
}
.header .head-control .dropdown-menu .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-dark);
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.header .head-control .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}
.header .head-control .dropdown-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}
.header .head-control .dropdown-menu .dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
}
.header-avatar-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: var(--assest-color);
    border: none;
    border-radius: var(--radius-md);
    padding: 4px 10px 4px 4px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    height: 38px;
}
.header-avatar-btn:hover {
    background: var(--primary-light);
}
.header-avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-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;
    font-size: 13px;
    flex-shrink: 0;
}
.header-avatar-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}
/* END: HEADER DROPDOWN REFINEMENTS */

/* ===== User module (reusable across all index pages) — start ===== */

/* START: PAGE HEADER BAR BREADCRUMB */
.page-header-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 8px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}
.page-header-bar .page-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}
.page-header-bar .breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}
.page-header-bar .breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 500;
}
.page-header-bar .breadcrumb-item.active {
    color: var(--text-muted);
}
.page-header-bar .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}
.page-header-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-outline-default {
    display: inline-flex;
    align-items: center;
    background: var(--white-color);
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 22px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-outline-default:hover {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}
/* END: PAGE HEADER BAR BREADCRUMB */

/* START: ACTION CARD */
.action-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);
}
.action-export-row {
    gap: 12px;
}
/* END: ACTION CARD */

/* START: EXPORT BUTTONS */
.export-info-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.export-info-label i {
    color: var(--primary-color);
    font-size: 15px;
}
.export-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.btn-export {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    background: var(--white-color);
    color: var(--text-dark);
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    line-height: 1;
}
.btn-export:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
}
.btn-export i {
    font-size: 14px;
}
/* END: EXPORT BUTTONS */

/* START: SEARCH & FILTER BAR */
.search-filter-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.search-input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--assest-color);
    border: 1.5px solid var(--assest-color);
    border-radius: var(--radius-md);
    padding: 4px 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.search-input-group:focus-within {
    border-color: var(--primary-color);
    background: var(--white-color);
}
.search-input-group i {
    color: var(--text-muted);
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
}
.search-input-group .form-control {
    border: none;
    background: transparent;
    padding: 7px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: var(--text-dark);
    height: auto !important;
    border-radius: 0;
}
.search-input-group .form-control:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.filter-select-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background: var(--assest-color);
    border-radius: var(--radius-md);
    padding: 4px 14px;
    min-width: 180px;
    border: 1.5px solid var(--assest-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.filter-select-group:focus-within {
    border-color: var(--primary-color);
    background: var(--white-color);
}
.filter-select-group .filter-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.filter-select-group .form-control {
    border: none;
    background: transparent;
    padding: 7px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: var(--text-dark);
    height: auto !important;
    cursor: pointer;
    border-radius: 0;
}
.filter-select-group .form-control:focus {
    border-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.filter-select-group-select2 {
    min-width: 200px;
    padding: 1px 14px;
}

.filter-select-group-select2 .select2-container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.filter-select-group-select2 .select2-container .select2-selection--single {
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-select-group-select2 .select2-container .select2-selection__rendered {
    padding: 7px 24px 7px 0;
    line-height: 1.5;
    color: var(--text-dark);
    font-size: 14px;
}

.filter-select-group-select2 .select2-container .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 0;
}
/* END: SEARCH & FILTER BAR  */

/* START: TABLE CARD */
.table-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.table-card .table {
    margin: 0;
}
table.dataTable {
    margin-top: 3px !important;
}
.table-card .table thead tr {
    background: var(--assest-color);
}
.table-card .table thead th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: var(--assest-color);
    color: var(--text-muted);
    border-top: none;
    border-bottom: 2px solid var(--border-color);
    padding: 14px 12px;
    white-space: nowrap;
}
.table-card .table td {
    padding: 12px;
    border-bottom: 1px solid var(--assest-color);
    vertical-align: middle;
    color: var(--text-dark);
}
.table-card .table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-card .table-striped tbody tr:nth-of-type(even) {
    background-color: var(--assest-color);
}
.table-card .table tbody tr {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.table-card .table tbody tr:hover {
    background-color: var(--primary-light) !important;
}
/* End: TABLE CARD */

/* User type / login type badges */
.type-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    background: var(--white-color);
    color: var(--text-dark);
    white-space: nowrap;
    line-height: 1.5;
}

.type-badge-otp {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.type-badge-google {
    color: var(--green-color);
    border-color: var(--green-color);
}

.type-badge-apple {
    color: var(--body-color);
    border-color: var(--body-color);
}

.type-badge-normal {
    color: var(--text-muted);
    border-color: var(--border-color);
    /* background: var(--assest-color); */
}


/* Responsive: export bar stacks on small screens */
@media (max-width: 767px) {
    .page-header-bar {
        gap: 10px;
    }
    .page-header-bar .page-heading {
        font-size: 17px;
    }
    .action-card {
        padding: 14px 16px;
    }
    .search-filter-bar {
        gap: 8px;
    }
    .filter-select-group {
        min-width: 100%;
    }
    .export-info-label {
        font-size: 12px;
    }
}
@media (max-width: 567px) {
    .search-filter-bar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .search-input-group {
        width: 100%;
        min-width: 100%;
    }
    .export-btn-group {
        width: 100%;
    }
}

/* ==== User module (reusable across all index pages) — end ==== */


/* START: FORM GLOBAL REFINEMENTS */
.form-control,
.custom-select {
    -webkit-transition: border-color 0.22s ease, -webkit-box-shadow 0.22s ease;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-control:focus,
.custom-select:focus {
    -webkit-box-shadow: 0 0 0 3px var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control::-webkit-input-placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}
.form-control:-ms-input-placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group label {
    letter-spacing: 0.01em;
}

/* END: FORM GLOBAL REFINEMENTS */

/* START: IMAGE UPLOAD COMPONENT */
.image-upload-wrapper {
    max-width: 220px;
}

.image-upload-wrapper input[type="file"] {
    display: none;
}

.drop-area {
    position: relative;
    width: 85%;
    height: 170px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    background: var(--assest-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s;
}
.drop-area-landscape {
    width: 100%;
    height: 140px;
    aspect-ratio: 16 / 9;
}

.drop-area img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    opacity: 0;
    transition: 0.3s;
}

.drop-prompt,
.drop-change-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.drop-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 20px;
    margin-bottom: 8px;
    transition: 0.25s;
}

.drop-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.drop-hint {
    font-size: 11px;
    color: var(--text-muted);
}

.drop-change-hint {
    bottom: 0;
    top: auto;
    height: auto;
    padding: 8px;
    flex-direction: row;
    gap: 6px;
    background: var(--primary-hover);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: 0.25s;
}

.drop-area:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.drop-area:hover .drop-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.drop-area.dragover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.image-upload-wrapper.has-preview img {
    opacity: 1;
}

.image-upload-wrapper.has-preview .drop-prompt {
    opacity: 0;
    pointer-events: none;
}

.image-upload-wrapper.has-preview .drop-area:hover .drop-change-hint {
    opacity: 1;
}

/* Compact square upload box for addon rows */
.image-upload-wrapper.compact {
    max-width: 80px;
    display: flex;
    align-items: center;
}

.image-upload-wrapper.compact .drop-area {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
}

.image-upload-wrapper.compact .drop-prompt {
    flex-direction: column;
    gap: 3px;
    padding: 6px 4px;
}

.image-upload-wrapper.compact .drop-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
    margin-bottom: 0;
    border-radius: 4px;
}

.image-upload-wrapper.compact .drop-label {
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
}

.image-upload-wrapper.compact .drop-change-hint {
    font-size: 9px;
    padding: 4px 2px;
    gap: 3px;
}

@media (max-width: 767px) {
    .drop-area {
        height: 160px;
    }
}
/* END: IMAGE UPLOAD COMPONENT */

/* START: Settings List Rows (Onboarding & Social Links) */
.settings-list-row {
    background: var(--white-color);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 10px;
    transition: var(--transition);
}
.settings-list-row:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xs);
}
.settings-row-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.settings-row-uploader {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.settings-row-fields {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
}
.settings-row-actions {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.settings-row-remove {
    width: 36px;
    height: 36px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--red-50);
    color: var(--red-color);
    border: 1.5px solid transparent;
    font-size: 13px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.settings-row-remove:hover {
    background: var(--red-color);
    color: var(--white-color);
    border-color: var(--red-color);
}
.settings-row-add {
    width: 36px;
    height: 36px;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary-color);
    border: 1.5px solid transparent;
    font-size: 14px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.settings-row-add:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
/* END: Settings List Rows */

/* START: Dashboard */
.db-chart-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.db-filter-btn {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border: 1.5px solid var(--border-color);
    background: transparent;
    line-height: 1.5;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}
.db-filter-btn:hover,
.db-filter-btn.db-filter-active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.db-section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    display: block;
}
/* END: Dashboard */

/* Sort Order Item Start */
.sort-order-item {
    background-color: var(--assest-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: ns-resize;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.sort-order-item:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}
/* Sort Order Item End */


/* === Restaurant Module UI Improvements === */

/* Working Time Section */
.working-time-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    margin-bottom: 0 !important;
}
.working-time-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}
.working-time-row .form-group {
    margin-bottom: 0;
}
.working-time-row .radio-group {
    margin-bottom: 0;
}
.working-time-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding-left: 4px;
    line-height: 1.4;
}
.working-time-separator {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* === End Restaurant Module UI Improvements === */


/* === Role Module UI Improvements === */

.permission-card {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: box-shadow var(--transition);
    height: 100%;
}

.permission-card:hover {
    box-shadow: var(--shadow-sm);
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 4px;
}

.card-title-group {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
}

.switch-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}
.switch-wrapper:last-child {
    border-bottom: none;
}

.switch-wrapper .form-check-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    flex: 1;
    padding-right: 8px;
}

/* Custom Toggle Switch */
.custom-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.custom-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.switch-track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--text-muted);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 24px;
}
.switch-track::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-xs);
}
.switch-wrapper:hover {
    background: var(--primary-light);
    border-radius: 6px;
}
input:checked + .switch-track {
    background-color: var(--primary-color);
}
input:checked + .switch-track::before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* === End Role Module UI Improvements === */

.table-chip {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 50px;
    line-height: 1;
    white-space: nowrap;
}

/* Category (slightly stronger) */
.table-chip--category {
    background: var(--primary-light);
    color: var(--primary-color);
}

/* Cuisine (more neutral) */
.table-chip--cuisine {
    background: var(--border-color);
    color: var(--text-dark);
}

/* Optional subtle hover */
tr:hover .table-chip--cuisine {
    background: var(--white-color);
}

/* === Multipart Css Form Builder UI === */

.mfb-section {
    border-radius: var(--radius-md);
}

.mfb-label {
    font-weight: 500;
    color: var(--body-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.mfb-add-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.mfb-add-btn:hover {
    background-color: var(--primary-light);
}
.mfb-add-btn:focus {
    outline: none;
    box-shadow: none;
}

.mfb-remove-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.mfb-remove-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.mfb-img-preview {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

/* === End Multipart Css Form Builder UI === */

/* State CARD */

/* UPDATED: stat card base */
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-bottom: 20px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid transparent;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}

/* UPDATED: hover effect */
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* UPDATED: icon */
.stat-card-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

/* UPDATED: text */
.stat-card-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-card-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

/* NEW: reusable variants */
.stat-card-primary { 
    border-left-color: var(--primary-color); 
}

.stat-card-primary .stat-card-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.stat-card-success { 
    border-left-color: var(--green-color); 
}

.stat-card-success .stat-card-icon {
    background: var(--green-50);
    color: var(--green-color);
}

.stat-card-danger { 
    border-left-color: var(--red-color); 
}
.stat-card-danger .stat-card-icon {
    background: var(--red-50);
    color: var(--red-color);
}

/* UPDATED: earning variant (more consistent with theme) */
.stat-card-earning { 
    border-left-color: var(--primary-color); 
}
.stat-card-earning .stat-card-icon {
    background: var(--primary-color);
    color: var(--white-color);
}

/* UPDATED: responsive */
@media (max-width: 767px) {
    .stat-card { 
        padding: 16px; 
    }
    .stat-card-icon { 
        width: 44px; height: 44px; font-size: 17px; 
    }
    .stat-card-value { 
        font-size: 22px; 
    }
}
/* Stat CArd CSs End */

/* dt-BEDG */
/* UPDATED: base badge */
.dt-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* UPDATED: dot icon */
.dt-badge .fa-circle {
    font-size: 7px;
}

/* NEW: variants using theme variables */
.dt-badge-active {
    background: var(--green-50);
    color: var(--green-color);
}

.dt-badge-inactive {
    background: var(--red-50);
    color: var(--red-color);
}

.dt-badge-live {
    background: var(--primary-light);
    color: var(--primary-color);
}

.dt-badge-sandbox {
    background: var(--green-50);
    color: var(--text-muted);
}
/* DT_BEDG END */

/* START Card */

.custom-border-card .settings-card-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    /* padding: 14px 20px; */
}

.settings-card-hd-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.settings-card-hd-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.settings-card-hd-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.settings-card-hd-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 2px 0 0;
    line-height: 1.4;
}
/* END Card header */

/* Copy Btn css */
.copy-field-group {
    display: flex;
    flex-direction: column; /* stack label + input row */
    gap: 6px;
}
.copy-field-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.copy-field-input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-field-input-wrapper .form-control {
    flex: 1; /* take full width */
}

.copy-btn {
    width: 40px;
    height: 38px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--assest-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.copy-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
/* Copey btn css END */

/* == START: NOTIFICATION CONFIGURATION == */

/* UPDATED: master card */
.notif-master-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    margin-bottom: 16px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

/* UPDATED: info */
.notif-master-card-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

/* UPDATED: icon */
.notif-master-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 18px;
    flex-shrink: 0;
}

/* UPDATED: text */
.notif-master-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 3px;
}

.notif-master-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* UPDATED: card */
.notif-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
    overflow: hidden;
}

.notif-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.notif-card-header-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.notif-card-header-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.notif-card-body {
    padding: 16px 24px 8px;
}

.notif-card-footer {
    display: flex;
    justify-content: flex-end;
    padding: 14px 24px;
    border-top: 1px solid var(--border-color);
}

/* UPDATED: responsive */
@media (max-width: 575px) {
    .notif-master-card {
        flex-wrap: wrap;
    }
}
/* == END: NOTIFICATION CONFIGURATION == */

/* === START: SYSTEM SETTINGS TOOL CARDS === */
.sys-tool-grid {
    gap: 0;
}

.sys-tool-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px 20px;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    -webkit-box-shadow: var(--shadow-xs);
    box-shadow: var(--shadow-xs);
    -webkit-transition: border-color 0.22s ease, -webkit-box-shadow 0.22s ease, -webkit-transform 0.22s ease;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.sys-tool-card:hover {
    border-color: var(--primary-color);
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.sys-tool-card-danger:hover {
    border-color: var(--red-color);
}

.sys-tool-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    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;
    font-size: 20px;
    margin-bottom: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sys-tool-card-icon-primary {
    background: var(--primary-light);
    color: var(--primary-color);
}

.sys-tool-card-icon-success {
    background: var(--green-50);
    color: var(--green-color);
}

.sys-tool-card-icon-danger {
    background: var(--red-50);
    color: var(--red-color);
}

.sys-tool-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
}

.sys-tool-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.sys-tool-card-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.sys-tool-card-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;
    gap: 8px;
    width: 100%;
}

.btn-soft-danger {
    background: var(--red-50);
    border: 1.5px solid transparent;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red-color);
    padding: 9px 22px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.btn-soft-danger:hover {
    background: var(--red-color);
    color: var(--white-color);
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
    .sys-tool-card {
        height: auto;
    }
}

/* === END: SYSTEM SETTINGS TOOL CARDS === */

/* === START: CUSTOMER REPORT CHARTS === */
.cr-chart-legend {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 2;
}

.cr-chart-legend strong {
    color: var(--text-dark);
}

.cr-legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: middle;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .cr-chart-legend {
        font-size: 12px;
    }
}
/* === END: CUSTOMER REPORT CHARTS === */

/* PRIMARY FIX: native checkbox color */
.form-check-input,
.custom-checkbox {
    accent-color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Focus state (clean UI) */
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem var(--primary-light);
}

/* Optional: hover (very subtle UX improvement) */
.form-check-input:hover {
    filter: brightness(0.95);
}

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