:root {
    --primary: #3C50E0;
    --primary-dark: #2A3AB9;
    --secondary: #1C2434;
    --body-bg: #F1F5F9;
    --text-main: #1C2434;
    --text-label: #64748B;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --sidebar-width: 280px;
    --header-height: 80px;

    /* Tables & Alerts */
    --table-head: #F9FAFB;
    --table-hover: rgba(0, 0, 0, 0.01);
    --alert-success-bg: #ECFDF5;
    --alert-success-text: #065F46;
    --alert-error-bg: #FEE2E2;
    --alert-error-text: #991B1B;
    --alert-warning-bg: #FEF9C3;
    --alert-warning-text: #92400E;
    --alert-info-bg: #E0F2FE;
    --alert-info-text: #075985;

    /* Stat Cards */
    --stat-revenue-bg: linear-gradient(135deg, #fff 0%, #F0FDF4 100%);
    --stat-revenue-text: #064E3B;
    --stat-expired-bg: linear-gradient(135deg, #fff 0%, #FFF5F5 100%);
    --stat-expired-text: #991B1B;

    /* Luxury Stat Card Colors (Light) */
    --lc-red: #E11D48;
    --lc-red-bg: rgba(225, 29, 72, 0.05);
    --lc-blue: #3C50E0;
    --lc-blue-bg: rgba(60, 80, 224, 0.05);
    --lc-orange: #F59E0B;
    --lc-orange-bg: rgba(245, 158, 11, 0.05);
    --lc-grey: #64748B;
    --lc-grey-bg: rgba(100, 116, 139, 0.05);
    --lc-green: #10B981;
    --lc-green-bg: rgba(16, 185, 129, 0.05);
    --lc-purple: #8B5CF6;
    --lc-purple-bg: rgba(139, 92, 246, 0.05);
}

[data-theme="dark"] {
    --body-bg: #1A222C;
    --text-main: #D1D5DB;
    --text-label: #9CA3AF;
    --surface: #24303F;
    --border: #2E3A47;
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);

    /* Dark Tables & Alerts */
    --table-head: #1D2434;
    --table-hover: rgba(255, 255, 255, 0.02);
    --alert-success-bg: rgba(16, 185, 129, 0.1);
    --alert-success-text: #10B981;
    --alert-error-bg: rgba(220, 38, 38, 0.1);
    --alert-error-text: #EF4444;
    --alert-warning-bg: rgba(245, 158, 11, 0.1);
    --alert-warning-text: #F59E0B;
    --alert-info-bg: rgba(59, 130, 246, 0.1);
    --alert-info-text: #3B82F6;

    /* Dark Stat Cards */
    --stat-revenue-bg: rgba(16, 185, 129, 0.05);
    --stat-revenue-text: #10B981;
    --stat-expired-bg: rgba(220, 38, 38, 0.05);
    --stat-expired-text: #EF4444;

    /* Luxury Stat Card Colors (Dark) */
    --lc-red: #FB7185;
    --lc-red-bg: rgba(251, 113, 133, 0.1);
    --lc-blue: #60A5FA;
    --lc-blue-bg: rgba(96, 165, 250, 0.1);
    --lc-orange: #FBBF24;
    --lc-orange-bg: rgba(251, 191, 36, 0.1);
    --lc-grey: #94A3B8;
    --lc-grey-bg: rgba(148, 163, 184, 0.1);
    --lc-green: #34D399;
    --lc-green-bg: rgba(52, 211, 153, 0.1);
    --lc-purple: #A78BFA;
    --lc-purple-bg: rgba(167, 139, 250, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    transition: background 0.3s, color 0.3s;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font: inherit;
    outline: none;
}

/* Layout Shell */
.layout-shell {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Style */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--secondary);
    color: #DEE4EE;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sidebar-header {
    padding: 24px 24px 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    color: #fff;
}

.sidebar-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sidebar-nav {
    flex: 1;
    padding: 12px 24px;
    overflow-y: auto;
}

.nav-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #8A99AF;
    margin-bottom: 12px;
    margin-top: 16px;
    padding-left: 12px;
    letter-spacing: 1px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.nav-item:hover {
    background-color: #333A48;
    color: #fff;
}

.nav-item.active {
    background-color: #333A48;
    color: #fff;
}

.nav-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Main Content Style */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Header Style */
.header {
    height: var(--header-height);
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-toggle-sidebar {
    background: none;
    border: 1px solid var(--border);
    padding: 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-label);
    display: none;
    /* Only mobile */
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid var(--border);
    background: var(--body-bg);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(60, 80, 224, 0.1);
}

.search-box svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-label);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-icon-btn {
    background: var(--body-bg);
    border: 1px solid var(--border);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-label);
    cursor: pointer;
    position: relative;
}

.header-icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    background: #DC3545;
    color: #fff;
    border-radius: 50px;
    border: 2px solid var(--surface);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.user-info {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
}

.user-job {
    font-size: 11px;
    color: var(--text-label);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eee;
    object-fit: cover;
}

/* Authentication Pages */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--body-bg);
    padding: 16px;
}

.auth-shell {
    width: 100%;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.auth-side {
    background: var(--primary);
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-side h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.auth-side p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.auth-card {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}

.auth-card p {
    font-size: 14px;
    color: var(--text-label);
    margin-bottom: 32px;
}

.field {
    margin-bottom: 24px;
    width: 100%;
}

.field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-main);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-main);
    transition: all 0.2s;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(60, 80, 224, 0.1);
}

.field-icon-wrapper {
    position: relative;
}

.field-icon-wrapper input {
    padding-left: 44px !important;
}

.field-icon-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-label);
    pointer-events: none;
    transition: color 0.2s;
}

.field-icon-wrapper input:focus+svg {
    color: var(--primary);
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 48px;
    cursor: pointer;
}

.alert-error {
    background: #FEE2E2;
    color: #DC2626;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid #FECACA;
}

.alert-success {
    background: #ECFDF5;
    color: #059669;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid #A7F3D0;
}

.login-hint {
    margin-top: 32px;
    font-size: 12px;
    color: var(--text-label);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.login-hint code {
    background: var(--body-bg);
    padding: 2px 4px;
    border-radius: 2px;
}

.auth-mobile-header {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 500px;
        border-radius: var(--radius-md);
    }

    .auth-side {
        display: none;
    }

    .auth-card {
        padding: 40px;
    }

    .auth-mobile-header {
        display: flex;
    }
}

@media (max-width: 600px) {
    .auth-wrap {
        padding: 0;
        align-items: stretch;
    }

    .auth-shell {
        border: none;
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .auth-card {
        padding: 32px 24px;
        width: 100%;
    }
}

/* Dash Page Container */
.page-container {
    padding: 32px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Generic Components */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

/* Form Controls */
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(60, 80, 224, 0.1);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238A99AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 44px;
    cursor: pointer;
}

[data-theme="dark"] select.form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dee4ee'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.grid-form {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-form {
        grid-template-columns: 1fr;
    }
}

/* Stat Card Luxury Style */
.stat-card-luxury {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-luxury:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-card-luxury .card-content {
    flex: 1;
    min-width: 0;
}

.stat-card-luxury .card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-label);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.stat-card-luxury .card-value {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
    color: var(--text-main);
}

.stat-card-luxury .card-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-label);
    text-transform: uppercase;
    opacity: 0.8;
}

.stat-card-luxury .card-icon-pill {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.stat-card-luxury:hover .card-icon-pill {
    transform: scale(1.1);
}

.stat-card-luxury .card-icon-pill svg {
    width: 24px;
    height: 24px;
}

.padding {
    padding: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--body-bg);
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 32px;
}

.breadcrumb span {
    color: var(--text-label);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* Dropdown Components */
.dropdown-wrapper {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    z-index: 1010;
    overflow: hidden;
    animation: fadeInDown 0.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
}

.dropdown-list {
    max-height: 380px;
    overflow-y: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: var(--table-hover);
}

.dropdown-item.unread {
    background-color: rgba(60, 80, 224, 0.05);
}

.dropdown-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.item-text {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
}

.item-meta {
    font-size: 12px;
    color: var(--text-label);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-footer {
    padding: 14px;
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
}

.user-menu {
    width: 220px;
    padding: 8px 0;
}

.user-menu .dropdown-item {
    padding: 10px 20px;
    border: none;
    font-size: 14px;
}

.user-menu .dropdown-item svg {
    width: 18px;
    height: 18px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.dropdown-item.logout-btn {
    color: #DC3545;
}

.dropdown-item.logout-btn:hover {
    background: #FFF5F5;
}

#notif-menu {
    right: 0;
    transform-origin: top right;
}


/* Component Layouts */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.dashboard-chart-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Copy Button Styles */
.copy-btn-minimal {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-label);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    position: relative;
}

.copy-btn-minimal:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(60, 80, 224, 0.2);
}

.copy-btn-minimal:active {
    transform: scale(0.9);
}

.copy-btn-minimal.copied {
    background: #10B981;
    color: #fff;
    border-color: #10B981;
}

@keyframes copyAlertOut {
    0% { opacity: 0; transform: translate(-50%, 5px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -10px); }
}

/* === RESPONSIVE BREAKPOINTS === */

/* Large Desktop & Tablets (1200px and down) */
@media (max-width: 1200px) {
    .stat-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Tablets & Small Desktop (1024px and down) */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        left: -100%;
        z-index: 2000;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }

    .sidebar.show {
        left: 0;
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 1500;
        display: none;
        animation: fadeIn 0.2s ease;
    }

    .sidebar-overlay.show {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .sidebar-close {
        display: block !important;
        background: none;
        border: none;
        color: #8A99AF;
        cursor: pointer;
        margin-left: auto;
    }

    .btn-toggle-sidebar {
        display: grid;
    }

    .search-box {
        display: none;
    }

    .grid-form {
        grid-template-columns: 1fr;
    }

    .dashboard-chart-grid {
        grid-template-columns: 1fr;
    }

    .stat-cards-grid {
        gap: 16px;
    }
}


/* === TABLE SYSTEM === */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.table-responsive::-webkit-scrollbar {
    height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
    background: var(--body-bg);
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 6px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: var(--text-label);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    background: var(--table-head);
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    transition: background 0.2s;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

.nowrap {
    white-space: nowrap !important;
}

/* Mobile Devices (768px and down) */
@media (max-width: 768px) {
    .header {
        padding: 0 16px;
    }

    .page-container {
        padding: 16px;
    }

    .header-right {
        gap: 12px;
    }

    .user-info {
        display: none;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dashboard-grid > * {
        min-width: 0;
    }

    .stat-cards-grid {
        grid-template-columns: 1fr;
    }

    .card.padding {
        padding: 16px;
    }

    th, td {
        padding: 12px 16px !important;
    }

    #notif-menu {
        position: fixed;
        top: var(--header-height);
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 32px);
        max-width: 400px;
        right: auto;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        animation: fadeInCentered 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        will-change: transform, opacity;
    }

    @keyframes fadeInCentered {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .stat-card-luxury {
        padding: 16px;
        border-radius: 12px;
    }
    
    .stat-card-luxury .card-value {
        font-size: 20px;
    }
    
    .stat-card-luxury .card-icon-pill {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .stat-card-luxury .card-label {
        font-size: 10px;
        margin-bottom: 8px;
    }
}
