/* ============ HOTEL PMS DASHBOARD STYLES - MODERN LUXURY HOSPITALITY ============ */
:root {
    --bg: #F7F4EE;
    --card: #FFFFFF;
    --sidebar: #2E3B2E;
    --sidebar-hover: #384A38;

    --gold: #D4AF37;
    --gold-dark: #8C6A2B;

    --success: #5B8C5A;
    --warning: #C79A3B;
    --danger: #C16B5B;

    --text: #2A2A2A;
    --muted: #707070;
    --border: #E8E0D2;

    --radius: 20px;
}

.pms-dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--bg);
}

.pms-sidebar {
    width: 280px;
    background: var(--sidebar);
    display: flex;
    flex-direction: column;
    transition: width 0.3s ease;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
}

.pms-sidebar.collapsed {
    width: 80px;
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-img {
    height: 40px;
    width: auto;
}

.sidebar-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.sidebar-toggle {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}

.sidebar-nav {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-bottom: 8px;
}

.sidebar-section-icon {
    font-size: 16px;
}

.sidebar-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sidebar-section-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-item:hover {
    background: var(--sidebar-hover);
}

.sidebar-item.active {
    background: var(--gold);
    color: #222;
}

.sidebar-item-icon {
    font-size: 20px;
    color: #5A5A5A;
}

.sidebar-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
}

.user-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-logout:hover {
    background: rgba(212, 175, 55, 0.2);
}

.pms-main {
    flex: 1;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
    background: var(--bg);
}

.pms-sidebar.collapsed + .pms-main {
    margin-left: 80px;
}

.pms-header {
    background: var(--card);
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-greeting {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--muted);
}

.header-notifications {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.header-notifications:hover {
    background: var(--border);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-profile:hover {
    background: var(--border);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.pms-content {
    padding: 32px;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 20px 0;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.kpi-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.kpi-icon {
    font-size: 24px;
    color: #5A5A5A;
}

.kpi-content {
    flex: 1;
}

.kpi-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.kpi-footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kpi-trend {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.kpi-trend.positive {
    color: var(--success);
}

.kpi-trend.negative {
    color: var(--danger);
}

.kpi-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--muted);
}

.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
}

.room-availability {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-availability-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.room-availability-status {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.room-availability-count {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.room-availability-bar {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.room-availability-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.chart-container {
    position: relative;
    height: 200px;
}

.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.rating-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.rating-value {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.rating-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.secondary-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.tasks-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg);
    border-radius: 12px;
}

.task-icon {
    font-size: 24px;
}

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

.task-type {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.task-count {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.tables-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.table-container {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-align: left;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table td {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text);
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background: rgba(91, 140, 90, 0.15);
    color: var(--success);
}

.status-badge.pending {
    background: rgba(199, 154, 59, 0.15);
    color: var(--warning);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: var(--bg);
    border-radius: 12px;
}

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

.event-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.event-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

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

.event-hall {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gold);
}

.event-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status.in-progress {
    color: var(--success);
}

.event-status.upcoming {
    color: var(--warning);
}

/* Dashboard Additional Styles */
.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-section-icon {
    font-size: 16px;
}

.sidebar-section-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.sidebar-item-icon {
    font-size: 20px;
    color: #5A5A5A;
}

.sidebar-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.sidebar-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.sidebar-item:hover .sidebar-item-label {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-item.active {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.sidebar-item.active .sidebar-item-label {
    color: #D4AF37;
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
}

.user-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-logout:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #D4AF37;
}

.pms-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #F7F4EE;
}

.pms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: #FFFFFF;
    border-bottom: 1px solid #E8E0D2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
}

.header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6B6B6B;
}

.header-notifications {
    position: relative;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-notifications:hover {
    background: #E8E0D2;
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #B25A4A;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-profile {
    cursor: pointer;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar:hover {
    border-color: #D4AF37;
}

.pms-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.room-board-main {
    width: 100%;
}

.secondary-panels-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kpi-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.revenue-compact {
    background: #FFFFFF;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 4px;
    color: #5A5A5A;
}

.stat-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6B6B6B;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
}

.stat-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6B6B6B;
    margin: 0;
}

.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.main-operations-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.bottom-operations-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.chart-card {
    background: rgba(18, 24, 33, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

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

.chart-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.chart-options {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.chart-options:hover {
    color: #D4AF37;
}

.chart-content {
    min-height: 200px;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 150px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(180deg, #D4AF37 0%, #B9962C 100%);
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    filter: brightness(1.2);
}

.chart-labels {
    display: flex;
    gap: 12px;
}

.chart-labels span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    width: 40px;
    text-align: center;
}

.occupancy-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#D4AF37 0deg 281deg, rgba(212, 175, 55, 0.1) 281deg 360deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.occupancy-circle::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(18, 24, 33, 0.9);
}

.occupancy-value {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #D4AF37;
}

.occupancy-label {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.reservation-list,
.transaction-table,
.function-hall-events,
.quick-actions {
    background: rgba(18, 24, 33, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.list-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.reservation-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reservation-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reservation-guest {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.reservation-room {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.reservation-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.reservation-checkin {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.reservation-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.reservation-status.checked-in {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.reservation-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.reservation-status.confirmed {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6;
}

.transactions {
    width: 100%;
    border-collapse: collapse;
}

.transactions th {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.transactions td {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transactions tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

.event-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 8px;
}

.event-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.event-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-action-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.quick-action-icon {
    font-size: 24px;
    color: #5A5A5A;
}

.quick-action-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.bottom-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

/* New Operational Components */
.room-status-board,
.today-arrivals,
.today-departures,
.room-status-panel,
.front-desk-actions,
.housekeeping-panel,
.function-hall-panel,
.revenue-section {
    background: #FFFFFF;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.room-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.occupancy-overview {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.occupancy-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.occupancy-total,
.occupancy-percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
}

.occupancy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #2C2C2C;
}

.occupancy-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.occupancy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.occupancy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
}

.occupancy-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
}

.occupancy-status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6B6B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.occupancy-bar {
    width: 100%;
    height: 8px;
    background: #E8E0D2;
    border-radius: 4px;
    overflow: hidden;
}

.occupancy-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.today-operations,

.arrivals-list,
.departures-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arrival-item,
.departure-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.arrival-item:hover,
.departure-item:hover {
    background: #E8E0D2;
}

.arrival-guest,
.departure-guest {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2C2C2C;
}

.arrival-room,
.departure-room {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6B6B;
}

.arrival-time,
.departure-time {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6B6B6B;
}

.arrival-status,
.departure-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

.arrival-status.confirmed,
.departure-status.checked-out {
    background: rgba(79, 122, 88, 0.15);
    color: #4F7A58;
}

.arrival-status.pending,
.departure-status.pending {
    background: rgba(197, 155, 74, 0.15);
    color: #C59B4A;
}

.operations-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operation-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.operation-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.operation-time {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #D4AF37;
    min-width: 100px;
}

.operation-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.operation-guest {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.operation-action {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.operation-room {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.operation-type {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.operation-type.checkin {
    background: #22C55E;
}

.operation-type.checkout {
    background: #F59E0B;
}

.operation-type.arrival {
    background: #3B82F6;
}

.operation-type.event {
    background: #8B5CF6;
}

.room-status-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.room-status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
}

.room-status-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
}

.room-status-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6B6B6B;
    text-transform: uppercase;
}

.room-status-chart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-bar {
    height: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.status-bar:hover {
    filter: brightness(1.1);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.action-button {
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #E8E0D2;
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.action-icon {
    font-size: 18px;
    color: #5A5A5A;
}

.action-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2C2C2C;
    text-align: center;
}

.housekeeping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.housekeeping-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
}

.housekeeping-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
}

.housekeeping-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6B6B;
    text-transform: uppercase;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 12px;
}

.event-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2C2C2C;
}

.event-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6B6B6B;
}

.event-hall {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #D4AF37;
}

.revenue-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #F7F4EE;
    border: 1px solid #E8E0D2;
    border-radius: 8px;
}

.revenue-type {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #2C2C2C;
}

.revenue-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
}

.revenue-change {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.revenue-change.positive {
    color: #4F7A58;
}

.revenue-change.negative {
    color: #C59B4A;
}

.list-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0 0 16px 0;
}

/* Dashboard Mobile Responsive */
@media (max-width: 1400px) {
    .kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .analytics-row {
        grid-template-columns: 1fr;
    }

    .secondary-row {
        grid-template-columns: 1fr;
    }

    .tables-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pms-sidebar {
        position: fixed;
        left: -280px;
    }

    .pms-sidebar.active {
        left: 0;
    }

    .pms-main {
        margin-left: 0;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-greeting {
        font-size: 24px;
    }

    .pms-content {
        padding: 20px;
    }
}

@media (max-width: 1200px) {
    .secondary-panels-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-section {
        grid-template-columns: 1fr;
    }

    .kpi-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-operations-row {
        grid-template-columns: 1fr;
    }

    .bottom-operations-row {
        grid-template-columns: 1fr;
    }

    .charts-row {
        grid-template-columns: 1fr;
    }

    .bottom-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pms-sidebar {
        position: fixed;
        left: -280px;
        z-index: 1000;
        height: 100vh;
    }

    .pms-sidebar.active {
        left: 0;
    }

    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .secondary-panels-row {
        grid-template-columns: 1fr;
    }

    .bottom-section {
        grid-template-columns: 1fr;
    }

    .kpi-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-operations-row {
        grid-template-columns: 1fr;
    }

    .bottom-operations-row {
        grid-template-columns: 1fr;
    }

    .pms-header {
        padding: 16px 20px;
    }

    .header-greeting {
        font-size: 18px;
    }

    .pms-content {
        padding: 20px;
    }

    .room-status-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ Floating Action Buttons ============ */
.fab-container {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
}

.fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 9998;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fab-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
    position: relative;
    z-index: 10000;
}

.fab-actions.expanded {
    pointer-events: auto;
}

.fab-action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    position: relative;
    z-index: 10001;
}

.fab-action-label {
    background: #FFFFFF;
    color: #2D3E34;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.fab-action-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #2D3E34;
    color: #F8F6F1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(45, 62, 52, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.fab-action-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
    background: #C9A227;
}

.fab-action-button:active {
    transform: scale(0.95);
}

.fab-action-button:focus {
    outline: 2px solid #C9A227;
    outline-offset: 2px;
}

.fab-action-icon {
    line-height: 1;
}

.fab-action-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #C9A227;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #C9A227;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 9999;
}

.fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
    background: #D4B337;
}

.fab-main:active {
    transform: scale(0.95);
}

.fab-main:focus {
    outline: 2px solid #2D3E34;
    outline-offset: 2px;
}

.fab-main.expanded {
    transform: rotate(45deg);
    background: #2D3E34;
    box-shadow: 0 4px 12px rgba(45, 62, 52, 0.4);
}

.fab-main.expanded:hover {
    background: #3D4E44;
    box-shadow: 0 6px 20px rgba(45, 62, 52, 0.5);
}

.fab-main-icon {
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .fab-action-button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .fab-action-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .fab-action-item {
        gap: 10px;
    }
}

/* Guidelines Section */
.guidelines-section {
    padding: 24px 32px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.guidelines-header {
    margin-bottom: 20px;
}

.guidelines-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
}

.guidelines-header p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.guidelines-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.guideline-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guideline-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 162, 76, 0.15);
    transform: translateY(-2px);
}

.guideline-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 162, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.guideline-info {
    flex: 1;
}

.guideline-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
}

.guideline-info span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

/* Mobile Responsive for Guidelines */
@media (max-width: 768px) {
    .guidelines-section {
        padding: 16px 20px;
    }
    
    .guidelines-cards {
        grid-template-columns: 1fr;
    }
    
    .guideline-card {
        padding: 16px;
    }
}
