body {
    background-color: #f8fafc;
    color: #334155;
    font-family: "Inter", "Nunito", sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    overflow-x: hidden;
}

body.sidebar-layout {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding-top: 0;
    margin-top: 0;
}

.sidebar-layout .navbar.fixed-top,
.sidebar-layout .navbar.navbar-lh {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

#main-modal.modal {
    display: none !important;
}

#main-modal.modal.show {
    display: block !important;
}

.rooms-page {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rooms-hero {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.rooms-hero-copy h1 {
    margin: 0.25rem 0 0.35rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.rooms-hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rooms-hero-copy p {
    max-width: 64ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.rooms-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    min-width: 240px;
}

.rooms-hero-button {
    min-width: 180px;
    height: 44px;
    border-radius: 12px;
}

.rooms-hero-note {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.rooms-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.rooms-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.rooms-stat-label {
    display: block;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rooms-stat-value {
    display: block;
    margin: 0.35rem 0 0.2rem;
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.rooms-stat-meta {
    color: #64748b;
    font-size: 0.82rem;
}

.rooms-panel {
    padding: 1.35rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
}

.rooms-panel-header {
    padding: 0 0 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.rooms-panel-header h4 {
    margin-bottom: 0.25rem;
}

.rooms-panel-header p {
    margin: 0;
    color: #64748b;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.room-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem;
    min-height: 100%;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.room-card-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.room-card-label {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.room-card-title {
    margin: 0.2rem 0 0;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 800;
}

.room-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.room-status-pill.status-vacant {
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
}

.room-status-pill.status-occupied {
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.12);
}

.room-status-pill.status-maintenance {
    color: #b45309;
    background: rgba(245, 158, 11, 0.14);
}

.room-card-meta {
    display: grid;
    gap: 0.6rem;
}

.room-card-meta-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #475569;
    font-size: 0.9rem;
}

.room-card-meta-item strong {
    color: #0f172a;
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.room-card-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rooms-empty-state {
    grid-column: 1 / -1;
    padding: 2rem 1rem;
    border-radius: 18px;
    border: 1px dashed #cbd5e1;
    text-align: center;
    color: #64748b;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.rooms-empty-state i {
    color: #cbd5e1;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.rooms-empty-state h5 {
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.rooms-pagination {
    margin-top: 1rem;
}

@media (max-width: 1199.98px) {
    .rooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rooms-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .rooms-hero {
        flex-direction: column;
    }

    .rooms-hero-actions {
        min-width: 0;
        align-items: flex-start;
    }

    .rooms-stat-grid,
    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .rooms-panel {
        padding: 1rem;
    }
}

main {
    padding-top: 0;
    margin-top: 0;
}

@media (min-width: 992px) {
    body.sidebar-layout {
        padding-top: 0 !important;
    }

    header.mobile-header,
    .mobile-header {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }
}

.page-wrapper {
    display: block;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
}

#page-content-wrapper {
    min-width: 0;
    margin-left: 280px;
    background: transparent;
    margin-top: 0;
    padding-top: 0;
}

.sidebar-layout #wrapper,
.sidebar-layout #page-content-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Mobile header styles removed to prevent top spacing */

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.myBtn {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: #2563eb;
    color: #fff;
}

.myBtn:hover,
.myBtn:focus {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    border-color: #1d4ed8;
    color: #fff;
}

.btn-lh {
    border: 0;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease-in-out;
}

.btn-lh:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-hotel-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
}

.btn-hotel-primary:hover,
.btn-hotel-primary:focus {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: #fff;
}

.btn-hotel-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.btn-hotel-success:hover,
.btn-hotel-success:focus {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
}

.transaction-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.transaction-toolbar .toolbar-action {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-lh {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.card-lh {
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-lh:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.card-lh .card-header {
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
}

.card-stats {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    color: #fff;
}

.card-stats-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-stats-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-stats-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.card-stats .stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-stats .stats-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
}

.table-lh {
    border-radius: 12px;
    font-size: 0.85rem;
    overflow: hidden;
}

.table-lh thead th {
    background: linear-gradient(135deg, #fafbfc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.table-lh td,
.table-lh th {
    padding: 0.85rem 0.9rem;
    vertical-align: middle;
}

.table-lh tbody tr:hover {
    background: #f8fafc;
}

.badge-lh {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.6rem;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: 1px solid #ced4da;
    min-height: 38px;
}

div.table-responsive > div.dataTables_wrapper > div.row:first-child,
div.table-responsive > div.dataTables_wrapper > div.row:last-child {
    padding: 1rem;
}

.toast {
    opacity: 1;
}

@media (min-width: 992px) {
    body.sidebar-layout {
        padding-top: 0 !important;
    }

    .mobile-header {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    #sidebar-wrapper {
        display: none;
    }

    #page-content-wrapper {
        margin-left: 0 !important;
        padding-left: 0;
    }
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.page-wrapper {
    display: block;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.row.g-0 {
    margin-left: 0;
    margin-right: 0;
}

.row.g-0 > [class*="col-"] {
    padding: 0;
}

.row.g-2 > [class*="col-"] {
    padding: 0.5rem;
}

.row.g-3 > [class*="col-"] {
    padding: 0.75rem;
}

.row.g-4 > [class*="col-"] {
    padding: 1rem;
}

.col {
    flex: 1 0 0%;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }
    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utility helpers */
.d-flex {
    display: flex;
}
.d-grid {
    display: grid;
}
.d-block {
    display: block;
}
.d-none {
    display: none;
}
.align-items-center {
    align-items: center;
}
.align-items-start {
    align-items: flex-start;
}
.align-items-end {
    align-items: flex-end;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-start {
    justify-content: flex-start;
}
.text-center {
    text-align: center;
}
.text-end {
    text-align: right;
}
.text-start {
    text-align: left;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.rounded-circle {
    border-radius: 9999px;
}
.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.mb-0 {
    margin-bottom: 0;
}
.mb-1 {
    margin-bottom: 0.25rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mt-0 {
    margin-top: 0;
}
.mt-1 {
    margin-top: 0.25rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.me-1 {
    margin-right: 0.25rem;
}
.me-2 {
    margin-right: 0.5rem;
}
.ms-1 {
    margin-left: 0.25rem;
}
.ms-2 {
    margin-left: 0.5rem;
}

.p-0 {
    padding: 0;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-4 {
    padding: 1rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none;
    }
    .d-lg-block {
        display: block;
    }
}

/* === MOBILE HEADER FIX === */
@media (max-width: 991.98px) {
    #sidebar-wrapper {
        display: none;
    }

    #page-content-wrapper {
        margin-left: 0 !important;
        padding-left: 0;
    }

    header.mobile-header,
    .mobile-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.5rem 1rem !important;
        height: auto !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1050 !important;
        background: #fff !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }

    .mobile-header .hamburger-btn {
        order: -1;
        font-size: 1.25rem;
        padding: 0.4rem 0.6rem;
        background: none;
        border: none;
        color: #1e293b;
        cursor: pointer;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .mobile-header .mobile-brand {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        text-decoration: none;
        flex: 1;
        min-width: 0;
    }

    .mobile-header .brand-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-header .brand-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-header .brand-text {
        font-size: 0.95rem;
        font-weight: 700;
        color: #1e293b;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-profile {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .mobile-header .notification-btn {
        font-size: 1.1rem;
        padding: 0.4rem;
        color: #64748b;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .mobile-header .profile-dropdown-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.3rem 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 0.85rem;
        font-weight: 600;
        color: #1e293b;
    }

    .mobile-header .profile-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
}
