/* ==========================================================================
   ENTERPRISE DESIGN SYSTEM - HỆ THỐNG QUẢN LÝ CĂN HỘ DỊCH VỤ
   Luxury SaaS Aesthetic: Plus Jakarta Sans, Refined Elevation, Ambient Depth
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --sidebar-bg: #0f172a;
    --sidebar-text: #94a3b8;
    --sidebar-hover: #1e293b;
    --sidebar-active: #2563eb;
    --secondary-color: #64748b;
    --secondary-hover: #475569;
    --success-color: #10b981;
    --success-light: #ecfdf5;
    --warning-color: #f59e0b;
    --warning-light: #fffbeb;
    --danger-color: #ef4444;
    --danger-light: #fef2f2;
    --info-color: #06b6d4;
    --info-light: #ecfeff;
    
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(226, 232, 240, 0.85);
    --border-radius: 14px;
    --border-radius-sm: 10px;
    --border-radius-lg: 18px;
    --box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.02);
    --box-shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --box-shadow-lg: 0 10px 25px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
    --box-shadow-xl: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.05);
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* SLEEK CUSTOM SCROLLBARS */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

body.app-body, 
.app-sidebar, 
.app-main-wrapper, 
.app-header, 
.nav-link, 
.nav-label, 
.nav-section-title, 
.brand-text, 
.brand-name, 
.brand-sub, 
.page-title, 
.card, 
.btn, 
input, 
select, 
textarea, 
button {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body.app-body {
    background-color: #f8fafc;
    background-image: 
        radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.025) 0%, transparent 50%);
    background-attachment: fixed;
    color: #0f172a;
    line-height: 1.55;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

input, button, select, textarea, optgroup {
    font-family: inherit;
}

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.currency-mask, .room-spec-value, .contract-kpi-card, .detail-value, .contract-fee-chip {
    font-feature-settings: "tnum" 1, "cv05" 1;
    font-variant-numeric: tabular-nums;
}

/* SVG ICON HELPER */
.svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke-width: 2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* ==========================================================================
   LAYOUT CẤU TRÚC: FIXED LEFT SIDEBAR + HEADER + MAIN CONTENT
   ========================================================================== */

.app-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* OVERLAY BẢO VỆ MOBILE SIDEBAR */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.btn-sidebar-close {
    display: none;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-sidebar-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* SIDEBAR DỌC BÊN TRÁI */
.app-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #060913 0%, #0a0f1d 40%, #0d1424 100%) !important;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 4px 0 28px rgba(0, 0, 0, 0.35) !important;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
}

.app-sidebar.collapsed {
    transform: translateX(-260px);
}

.sidebar-brand {
    height: 72px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%) !important;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(14, 165, 233, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    flex-shrink: 0;
}

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

.brand-name {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.015em !important;
    color: #ffffff !important;
    line-height: 1.25;
}

.brand-sub {
    font-size: 0.65rem !important;
    color: #38bdf8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 700 !important;
    margin-top: 2px;
}

/* CUSTOM ULTRA-SLEEK SCROLLBAR DÀNH CHO SIDEBAR (KHÔNG BỊ TRẮNG XÓA) */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.65rem 0 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.nav-section-title {
    font-size: 0.66rem !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    padding: 0.85rem 1.25rem 0.35rem !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    user-select: none;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 2px 0.75rem !important;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.58rem 0.95rem !important;
    border-radius: 10px !important;
    color: #94a3b8 !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid transparent !important;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #f8fafc !important;
    transform: translateX(3px) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.nav-link.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transform: none !important;
}

.nav-link .svg-icon {
    opacity: 0.75 !important;
    color: inherit !important;
    transition: all 0.2s ease !important;
}

.nav-link:hover .svg-icon {
    opacity: 1 !important;
    color: #38bdf8 !important;
}

.nav-link.active .svg-icon {
    opacity: 1 !important;
    color: #ffffff !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.sidebar-footer {
    padding: 1rem 0.85rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.25) !important;
}

.btn-sidebar-logout {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
    padding: 0.65rem 0.95rem !important;
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.18) !important;
    border-radius: 11px !important;
    color: #f87171 !important;
    font-size: 0.885rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: all 0.2s ease !important;
}

.btn-sidebar-logout:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25) !important;
}

/* KHU VỰC CHÍNH BÊN PHẢI */
.app-main-wrapper {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: calc(100% - 260px);
    max-width: 100%;
    transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1), width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-sidebar.collapsed ~ .app-main-wrapper {
    margin-left: 0;
    width: 100%;
}

/* HEADER CỐ ĐỊNH */
.app-header {
    height: 66px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.btn-sidebar-toggle {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    padding: 0.45rem 0.6rem;
    cursor: pointer;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.btn-sidebar-toggle:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-icon-btn {
    position: relative;
    color: #64748b;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.header-icon-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9999px;
    padding: 1px 5px;
    min-width: 16px;
    text-align: center;
    border: 2px solid #ffffff;
}

.user-profile-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.user-profile-badge:hover {
    background-color: #f8fafc;
    border-color: #e2e8f0;
}

.user-avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

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

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
}

.user-role {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.user-role.role-admin { color: #dc2626; }
.user-role.role-staff { color: #2563eb; }

/* CONTENT BODY SCROLL DỌC */
.app-content-body {
    flex: 1;
    padding: 2rem;
    max-width: 1440px;
    width: 100%;
}

.app-footer {
    background-color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid var(--border-color);
    padding: 1.15rem 2rem;
    font-size: 0.825rem;
    color: #64748b;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   UI COMPONENTS & ENTERPRISE CONTROLS
   ========================================================================== */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 500;
}

.card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-md);
    margin-bottom: 1.75rem;
    position: relative;
    transition: var(--transition);
}

.card-header {
    padding: 1.15rem 1.4rem;
    border-bottom: 1px solid #f1f5f9;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.015em;
}

.card-body {
    padding: 1.25rem;
}

/* ==========================================================================
   BUTTONS (ENTERPRISE SAAS SYSTEM)
   ========================================================================== */
.btn, a.btn, button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    white-space: nowrap;
    line-height: 1.35;
    position: relative;
    user-select: none;
}

.btn:active, a.btn:active, button.btn:active {
    transform: scale(0.97) translateY(0);
}

.btn-sm, a.btn-sm, button.btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 8px;
    gap: 0.35rem;
}

.btn-primary, a.btn-primary, button.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
.btn-primary:hover, a.btn-primary:hover, button.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.btn-secondary, a.btn-secondary, button.btn-secondary {
    background: linear-gradient(135deg, #475569 0%, #334155 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(51, 65, 85, 0.25) !important;
}
.btn-secondary:hover, a.btn-secondary:hover, button.btn-secondary:hover {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%) !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(51, 65, 85, 0.35) !important;
    color: #ffffff !important;
}

.btn-success, a.btn-success, button.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
.btn-success:hover, a.btn-success:hover, button.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.btn-danger, a.btn-danger, button.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}
.btn-danger:hover, a.btn-danger:hover, button.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.btn-outline, a.btn-outline, button.btn-outline {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #334155 !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05) !important;
}
.btn-outline:hover, a.btn-outline:hover, button.btn-outline:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
    transform: translateY(-1.5px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08) !important;
}

.btn-excel, a.btn-excel, button.btn-excel {
    background: #ffffff !important;
    border: 1.5px solid #bbf7d0 !important;
    color: #047857 !important;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.08) !important;
}
.btn-excel:hover, a.btn-excel:hover, button.btn-excel:hover {
    background: #f0fdf4 !important;
    border-color: #86efac !important;
    color: #065f46 !important;
    transform: translateY(-1.5px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.18) !important;
}

/* FORMS */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.45rem;
    letter-spacing: -0.01em;
}

.form-control, 
input[type="text"]:not(.header-search-input):not(.filter-pill-input):not(.notif-input-search), 
input[type="email"], 
input[type="password"], 
input[type="number"], 
select, 
textarea {
    padding: 0.65rem 0.95rem;
    font-size: 0.875rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background-color: #ffffff;
    color: #0f172a;
    width: 100%;
    outline: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
}

.form-control:focus, input:focus, select:focus, textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.12);
    outline: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

/* TABLES */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

.table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1.1rem;
    border-bottom: 1.5px solid #e2e8f0;
    white-space: nowrap;
}

.table td {
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #1e293b;
}

.table tbody tr {
    transition: background-color 0.15s ease;
}

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

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.28rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.badge-success { background-color: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-warning { background-color: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.badge-info    { background-color: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.badge-danger  { background-color: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.badge-secondary { background-color: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* STAT CARDS / DETAIL GRID */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
    margin-bottom: 1.75rem;
}

.detail-item {
    background-color: #ffffff;
    padding: 1.2rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px -4px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.detail-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    word-break: break-word;
}

.stat-card .detail-value,
.detail-value.is-lg {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* ALERTS */
.alert {
    padding: 0.85rem 1.15rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.alert-success { background-color: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-danger  { background-color: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-warning { background-color: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-info    { background-color: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* LOGOUT MODAL */
.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
}

.logout-modal-content {
    position: relative;
    background: #ffffff;
    padding: 2.25rem;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--box-shadow-xl);
    z-index: 2001;
    border: 1px solid #e2e8f0;
}

/* SAAS PILL BADGE */
.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.brand-pill-blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.brand-pill-dark {
    background: rgba(255, 255, 255, 0.08);
    color: #bfdbfe;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background-color: currentColor;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}


/* ========================================================================
   PROFILE & INFORMATION GRID (REFINED SAAS DESIGN FOR DETAIL PAGES)
   ======================================================================== */
.profile-hero-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.profile-avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
    flex-shrink: 0;
}

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

.info-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem 1.15rem;
    transition: all 0.15s ease;
}

.info-box:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.info-box-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.info-box-value {
    font-size: 0.975rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
    word-break: break-word;
}

/* ==========================================================================
   GOOGLE MAPS ADDRESS AUTOCOMPLETE DROPDOWN
   ========================================================================== */
.address-autocomplete-dropdown {
    position: fixed;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    box-shadow: 0 20px 35px -8px rgba(15, 23, 42, 0.22), 0 8px 16px -4px rgba(15, 23, 42, 0.12);
    z-index: 99999999;
    max-height: 380px;
    overflow-y: auto;
    font-family: inherit;
    animation: fadeInDropdown 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.address-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.address-autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f8fafc;
    border-radius: 8px;
}

.address-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

.address-autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-autocomplete-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.address-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.12s ease, transform 0.12s ease;
}

.address-autocomplete-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

.address-autocomplete-item:hover,
.address-autocomplete-item.is-active {
    background: #f0f7ff;
}

.address-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fef2f2;
}

.address-item-content {
    flex: 1;
    min-width: 0;
}

.address-item-main {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 3px;
}

.address-item-sub {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.address-item-action {
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.address-item-action .select-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    transition: all 0.12s ease;
}

.address-autocomplete-item:hover .address-item-action .select-badge,
.address-autocomplete-item.is-active .address-item-action .select-badge {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.address-autocomplete-empty {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Visual confirmation feedback when an address is picked */
.address-selected-glow {
    border-color: #10b981 !important;
    background-color: #f0fdf4 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s ease !important;
}

/* ==========================================================================
   ROOM SHOWCASE PREVIEW BOX (CĂN HỘ ĐÃ CHỌN - THIẾT KẾ LUXURY & TINH TẾ)
   ========================================================================== */
.room-showcase-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    animation: fadeInRoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.room-showcase-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #2563eb 0%, #38bdf8 50%, #10b981 100%);
}

@keyframes fadeInRoom {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.room-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid #f1f5f9;
}

.room-showcase-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.room-showcase-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    flex-shrink: 0;
}

.room-showcase-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.room-showcase-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.room-showcase-status {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    font-size: 0.76rem;
    padding: 5px 12px;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.01em;
}

.room-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

.room-spec-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.95rem 1.15rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 82px;
}

.room-spec-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -3px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.room-spec-card.is-address {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.room-spec-card.is-highlight {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.room-spec-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.room-spec-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-spec-value {
    font-size: 0.96rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    word-break: break-word;
}

.room-spec-value.is-room-badge {
    color: #1d4ed8;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.room-spec-value.is-price-badge {
    color: #059669;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.room-spec-amenities {
    grid-column: 1 / -1;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.95rem 1.15rem;
}

.room-spec-amenities-content {
    font-weight: 500;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
    padding-left: 2px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (ENTERPRISE STANDARD)
   ========================================================================== */

/* Bảng dữ liệu: cho phép cuộn ngang mượt mà bên trong card */
.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    margin-bottom: 0.75rem;
}

.btn-sidebar-close {
    display: none;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    margin-left: auto;
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-sidebar-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

@media (max-width: 992px) {
    /* Khung bố cục chính vừa khít màn hình điện thoại, không bị tràn ngang */
    html, body.app-body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .app-layout {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }

    /* Sidebar chuyển sang dạng Drawer trượt ngang mượt mà */
    .app-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        max-width: 82vw !important;
        z-index: 1050 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
    }

    .app-sidebar.show-mobile {
        transform: translateX(0) !important;
        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5) !important;
    }

    .btn-sidebar-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .sidebar-overlay.active {
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Vùng nội dung chính chiếm trọn 100% màn hình điện thoại */
    .app-main-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }

    /* 4 thẻ KPI thống kê trên điện thoại bố trí dạng 2x2 cực kỳ dễ nhìn */
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }

    /* Các lưới 2 cột, 3 cột tự động xếp theo chiều dọc */
    div[style*="grid-template-columns: 320px 1fr"],
    div[style*="grid-template-columns: 2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: 1.25fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.5fr 1fr"],
    div[style*="grid-template-columns: repeat(3, 1fr)"],
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .detail-grid,
    .room-spec-grid {
        grid-template-columns: 1fr !important;
        gap: 0.65rem !important;
    }

    /* Thanh Header trên điện thoại */
    .app-header {
        height: 58px !important;
        padding: 0 0.85rem !important;
    }

    .header-left {
        gap: 0.5rem !important;
        min-width: 0;
        flex: 1;
    }

    .header-breadcrumb {
        font-size: 0.875rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-breadcrumb span:first-child,
    .header-breadcrumb span:nth-child(2) {
        display: none !important;
    }

    .header-right {
        gap: 0.5rem !important;
        flex-shrink: 0;
    }

    .user-info-text {
        display: none !important;
    }

    .user-profile-badge {
        padding: 0.2rem 0.35rem !important;
        gap: 0.3rem !important;
    }

    .user-avatar-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }

    .user-dropdown-menu {
        right: 0 !important;
        min-width: 210px !important;
        max-width: calc(100vw - 20px) !important;
    }

    /* Vùng nội dung trang */
    .app-content-body {
        padding: 0.85rem 0.65rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Tiêu đề trang */
    .page-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.65rem !important;
        margin-bottom: 1rem !important;
    }

    .page-title {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }

    .page-header > div:last-child {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .page-header .btn {
        flex: 1 !important;
        min-width: 130px !important;
        font-size: 0.85rem !important;
        padding: 0.6rem 0.75rem !important;
        justify-content: center !important;
    }

    /* Card & Khung giao diện */
    .card {
        margin-bottom: 0.85rem !important;
        border-radius: 12px !important;
    }

    .card-header {
        padding: 0.75rem 0.85rem !important;
        flex-wrap: wrap !important;
        gap: 0.45rem !important;
    }

    .card-body {
        padding: 0.85rem 0.75rem !important;
    }

    /* Bộ lọc Form trên điện thoại */
    form[style*="display: flex"],
    .filter-card,
    .filter-form {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.65rem !important;
    }

    form[style*="display: flex"] > div,
    .filter-card > div,
    .filter-form > div {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
    }

    form[style*="display: flex"] button,
    .filter-card button,
    .filter-form button {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.6rem !important;
    }

    /* Form controls: font-size 16px chống lỗi iOS tự zoom làm giật màn hình */
    .form-control,
    .form-control-dark,
    input[type="text"]:not(.header-search-input):not(.filter-pill-input):not(.notif-input-search),
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    input[type="date"],
    input[type="month"],
    select,
    textarea {
        font-size: 16px !important;
        padding: 0.6rem 0.75rem;
        box-sizing: border-box !important;
    }

    .table, table, .data-table, .contract-table {
        min-width: 600px !important;
    }

    .table th, .table td,
    table th, table td {
        padding: 0.6rem 0.65rem !important;
        font-size: 0.825rem !important;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    /* Footer thu nhỏ */
    .app-footer {
        padding: 0.85rem !important;
        font-size: 0.75rem !important;
    }

    .footer-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.35rem !important;
    }

    /* Modal dialog */
    .modal-dialog, .modal-content {
        width: 94% !important;
        max-width: 450px !important;
        margin: 1rem auto !important;
    }
}





/* ==========================================================================
   REDESIGN DASHBOARD & PROPERTY MANAGEMENT (LUXURY SAAS ENTERPRISE)
   MATCHING REFERENCE IMAGE: media_1789499738986.png
   ========================================================================== */

/* HEADER SEARCH PILL */
.header-search-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    z-index: 2;
}
.header-search-input {
    width: 270px;
    min-width: 220px;
    height: 40px;
    padding: 0 16px 0 44px !important;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.88rem;
    font-family: inherit;
    line-height: normal;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box !important;
}
.header-search-input:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    width: 320px;
}
.header-search-input::placeholder {
    color: #94a3b8;
    font-size: 0.88rem;
    opacity: 1;
}

/* CODE / ID PILL BADGE MATCHING IMAGE 5 */
.badge-code {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #bfdbfe;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    line-height: 1.2;
    white-space: nowrap;
}

/* HERO SKYLINE BANNER */
.hero-skyline-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border: 1px solid rgba(191, 219, 254, 0.8);
    box-shadow: 0 6px 24px -4px rgba(37, 99, 235, 0.08);
}
.hero-skyline-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.94) 0%, rgba(219, 234, 254, 0.88) 55%, rgba(191, 219, 254, 0.78) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}
.hero-banner-inner {
    position: relative;
    z-index: 2;
    padding: 1.75rem 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-banner-left {
    flex: 1;
    min-width: 280px;
}
.hero-banner-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.hero-banner-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}
.hero-banner-breadcrumb .sep {
    color: #94a3b8;
    margin: 0 2px;
}
.hero-banner-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}
.hero-banner-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.4rem;
    font-weight: 500;
}
.hero-banner-right-card {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    border-radius: 14px;
    padding: 0.95rem 1.45rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.45);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-banner-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.hero-banner-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}
.hero-banner-card-sub {
    font-size: 0.85rem;
    color: #bfdbfe;
    font-weight: 500;
    margin-top: 2px;
}
.hero-clock-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid #bfdbfe;
    border-radius: 12px;
    padding: 0.55rem 1.15rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
    transition: all 0.2s ease;
}
.hero-clock-pill:hover {
    border-color: #93c5fd;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

/* KHUNG THỜI GIAN & ĐỒNG HỒ NỔI BẬT NỀN ĐÊM PENTHOUSE TRÊN HERO BANNER */
.hero-clock-banner-card {
    min-width: 320px;
    height: 86px;
    flex-shrink: 0;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem 1.6rem;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.hero-clock-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 30, 80, 0.6) 45%, rgba(10, 25, 70, 0.88) 100%);
    pointer-events: none;
}


/* 4 KPI CARDS ROW (EXACTLY MATCHING REFERENCE MOCKUP) */
.kpi-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.kpi-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.35rem 1.45rem;
    box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.kpi-premium-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}
.kpi-top-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}
.kpi-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.kpi-icon-blue {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
}
.kpi-icon-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.kpi-icon-violet {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}
.kpi-icon-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.kpi-title-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #475569;
    margin: 0;
}
.kpi-trend-arrow {
    margin-left: auto;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.kpi-big-value {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.45rem;
}
.kpi-val-blue { color: #2563eb; }
.kpi-val-emerald { color: #059669; }
.kpi-val-navy { color: #1e40af; }
.kpi-val-orange { color: #c2410c; }

.kpi-sub-text {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.45;
}
.kpi-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    margin-top: 0.4rem;
    transition: all 0.15s ease;
}
.kpi-card-link:hover {
    transform: translateX(2px);
    text-decoration: underline;
}

/* APARTMENT TABLE CARD & FILTER BAR */
.table-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}
.table-card-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}
.table-card-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.table-header-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.table-count-badge {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* FILTER BAR */
.table-filter-bar {
    padding: 1.15rem 1.75rem;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: flex-end;
}
.filter-pill-input,
.notif-input-search,
input.filter-pill-input,
input.notif-input-search {
    height: 42px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0 1rem 0 44px !important;
    font-size: 0.88rem;
    outline: none;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.filter-pill-select {
    height: 42px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    padding: 0 1rem;
    font-size: 0.88rem;
    outline: none;
    background: #ffffff;
    color: #0f172a;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.filter-pill-input:focus,
.filter-pill-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.btn-filter-royal {
    height: 42px;
    padding: 0 1.5rem;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.2s;
    text-decoration: none;
}
.btn-filter-royal:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* DATA TABLE */
.table-premium {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}
.table-premium th {
    background: #ffffff;
    color: #64748b;
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}
.table-premium td {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.table-premium tbody tr {
    transition: background-color 0.15s ease;
}
.table-premium tbody tr:hover {
    background-color: #f8fafc;
}

/* TABLE PILLS & BADGES */
.badge-id-pill {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    font-family: ui-monospace, SFMono-Regular, monospace;
}
.badge-type-pill {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-status-dangthue {
    display: inline-block;
    padding: 0.3rem 0.95rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.badge-status-trong {
    display: inline-block;
    padding: 0.3rem 0.95rem;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}
.badge-status-baotri {
    display: inline-block;
    padding: 0.3rem 0.95rem;
    background: #fef3c7;
    color: #d97706;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* ACTIONS BUTTONS */
.btn-action-view {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    padding: 0.38rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.18s;
}
.btn-action-view:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.btn-action-edit {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.38rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.18s;
}
.btn-action-edit:hover {
    background: #334155;
    color: #ffffff;
    border-color: #334155;
    box-shadow: 0 2px 8px rgba(51, 65, 85, 0.25);
}
.btn-action-delete {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fee2e2;
    border-radius: 8px;
    padding: 0.38rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.18s;
}
.btn-action-delete:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

@media (max-width: 1200px) {
    .kpi-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .kpi-premium-grid {
        grid-template-columns: 1fr;
    }
    .hero-banner-inner {
        padding: 1.25rem 1.5rem;
    }
    .hero-banner-title {
        font-size: 1.5rem;
    }
    .hero-banner-right-card {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   DASHBOARD MEDIA_1789501670246.PNG SPECIFIC STYLES
   ========================================================================== */
.dashboard-greeting-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}
.greeting-left-content {
    flex: 1;
    min-width: 0;
}
.greeting-title-text {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    line-height: 1.25;
}
.greeting-title-text .user-highlight-name {
    color: #2563eb;
    font-weight: 800;
}
.greeting-subtitle-text {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 0.85rem 0;
    font-weight: 400;
}
.greeting-datetime-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    color: #334155;
    font-weight: 500;
}
.greeting-datetime-pill .datetime-icon {
    color: #2563eb;
    display: flex;
    align-items: center;
}
.greeting-datetime-pill .live-clock {
    color: #0f172a;
    font-weight: 700;
    margin-left: 0.35rem;
    padding-left: 0.5rem;
    border-left: 1px solid #cbd5e1;
}
.greeting-right-skyline-banner {
    width: 380px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.75rem;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.18);
}
.greeting-right-skyline-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 30, 80, 0.65) 50%, rgba(10, 25, 70, 0.88) 100%);
    pointer-events: none;
}
.skyline-banner-content {
    position: relative;
    z-index: 2;
    text-align: right;
    color: #ffffff;
}
.skyline-banner-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.skyline-banner-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: #93c5fd;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* KHỐI ĐỒNG HỒ & NGÀY THÁNG NỔI BẬT TRÊN BANNER ĐÊM (NHẬP CHUNG TRỰC TIẾP KHÔNG DÙNG KHUNG TRONG) */
.skyline-clock-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: #ffffff;
    user-select: none;
}
.skyline-clock-date {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    margin-bottom: 2px;
}
.skyline-clock-icon {
    color: #38bdf8;
    display: flex;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
.live-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    display: inline-block;
    animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.85); }
}
.skyline-clock-time {
    font-size: 2.15rem;
    font-weight: 800;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    letter-spacing: 0.06em;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 25px rgba(56, 189, 248, 0.45);
}

/* BỐ CỤC 2 CỘT DASHBOARD: TRÁI (CHARTS), PHẢI (WIDGETS) */
.dashboard-grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}
.dashboard-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}
.dashboard-charts-subgrid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 1.5rem;
}
.dashboard-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

/* WIDGET CARD CHUNG */
.dashboard-widget-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.widget-card-header {
    padding: 1.15rem 1.35rem 0.95rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}
.widget-header-title-box {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.widget-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}
.widget-header-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.widget-header-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s;
}
.widget-header-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* LỊCH CÔNG VIỆC */
.schedule-month-navigator {
    padding: 0.65rem 1.35rem;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}
.schedule-month-navigator a,
.schedule-month-navigator button {
    color: #94a3b8;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: color 0.15s;
    text-decoration: none;
}
.schedule-month-navigator a:hover {
    color: #0f172a;
}
.schedule-list {
    padding: 0.85rem 1.35rem 1.15rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.schedule-item-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.schedule-color-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
.dot-yellow { background-color: #f59e0b; }
.dot-green  { background-color: #10b981; }
.dot-blue   { background-color: #2563eb; }
.dot-purple { background-color: #8b5cf6; }
.dot-orange { background-color: #ea580c; }
.schedule-datetime-block {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    color: #64748b;
    width: 75px;
    flex-shrink: 0;
    line-height: 1.35;
}
.schedule-datetime-block .sch-date {
    font-weight: 700;
    color: #1e293b;
}
.schedule-info-block {
    flex: 1;
    min-width: 0;
}
.schedule-task-title {
    font-size: 0.86rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 2px;
}
.schedule-task-sub {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.3;
}

/* THÔNG BÁO GẦN ĐÂY */
.notif-widget-list {
    padding: 0.85rem 1.35rem 1.15rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}
.notif-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.notif-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.notif-circle-green  { background: #ecfdf5; color: #059669; }
.notif-circle-orange { background: #fff7ed; color: #ea580c; }
.notif-circle-purple { background: #f5f3ff; color: #7c3aed; }
.notif-circle-blue   { background: #eff6ff; color: #2563eb; }
.notif-item-body {
    flex: 1;
    min-width: 0;
}
.notif-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 2px;
}
.notif-item-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notif-item-time {
    font-size: 0.74rem;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}
.notif-item-sub {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* RESPONSIVE CHO DASHBOARD */
@media (max-width: 1280px) {
    .dashboard-grid-layout {
        grid-template-columns: 1fr;
    }
    .dashboard-right-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 992px) {
    .dashboard-charts-subgrid {
        grid-template-columns: 1fr;
    }
    .greeting-right-skyline-banner {
        display: none;
    }
}
@media (max-width: 768px) {
    .dashboard-right-column {
        grid-template-columns: 1fr;
    }
    .greeting-title-text {
        font-size: 1.35rem;
    }
}

