﻿/*=================================CSS DASHBOARD POpup =================================*/
:root {
    /* ===== Room booking status colors ===== */

    --krm-status-new: #9CA3AF;
    /* -4 NEW */
    --krm-status-pending: #F59E0B;
    /*  0 PENDING */
    --krm-status-approved: #22C55E;
    /*  1 APPROVED */
    --krm-status-checked-in: #3B82F6;
    /*  3 CHECKED_IN */
    --krm-status-checked-out: #6B7280;
    /*  4 CHECKED_OUT */

    --krm-status-cancelled: #F97316;
    /* -1 CANCELLED */
    --krm-status-rejected: #EF4444;
    /* -2 REJECTED */
    --krm-status-no-show: #B91C1C;
    /* -3 NO_SHOW */

    --krm-status-text-light: #FFFFFF;
}

/* ===================================customize scroll schedule ===================================*/
/* Tùy chỉnh thanh cuộn cho container chứa lịch */
.schedule-container::-webkit-scrollbar {
    height: 8px;
    /* Độ cao thanh cuộn ngang */
    width: 8px;
    /* Độ rộng thanh cuộn dọc (nếu có) */
}

/* Phần nền của thanh cuộn */
.schedule-container::-webkit-scrollbar-track {
    background: #f8f9fa;
    /* Màu nền rất nhạt để không gây chú ý */
    border-radius: 10px;
}

/* Phần tay cầm (Thanh trượt) */
.schedule-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    /* Màu xám trung tính nhẹ nhàng */
    border-radius: 10px;
    border: 2px solid #f8f9fa;
    /* Tạo khoảng trắng giả để thanh cuộn trông mảnh hơn */
}

/* Hiệu ứng khi di chuột vào hoặc kéo thanh cuộn */
.schedule-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
    /* Đậm hơn một chút khi tương tác */
}

/* Tương thích cho Firefox */
.schedule-container {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f8f9fa;
}

/* ===== CONTAINER ===== */
.krm-date-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
    margin-right: 10px;
    margin-left: 10px;
}

/* Date row - compact hơn */
.krm-date-selector .row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.krm-date-selector .btn {
    border: 1px solid #E0E0E0;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 36px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.krm-date-selector input[type="date"] {
    flex: 1;
}

.krm-db-chk-container {
    display: flex;
    gap: 2px;
    padding-top: 2px !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    padding: 0 4px;
    color: #fff;
}



.count-transaction-container-pending {
    color: #fff;
    background-color: var(--krm-status-pending);
}

.count-transaction-container-approved {
    color: #fff;
    background-color: var(--krm-status-approved);
}

.count-transaction-container-checkin {
    color: #fff;
    background-color: var(--krm-status-checked-in);
}

.count-transaction-container-checkout {
    color: #fff;
    background-color: var(--krm-status-checked-out);
}

.count-transaction-container-noshow {
    color: #fff;
    background-color: var(--krm-status-no-show);
}

/*// ================*/
.krm-db-chk-pending {
    background-color: var(--krm-status-pending);
}

.krm-db-chk-approved {
    background-color: var(--krm-status-approved);
}

.krm-db-chk-checked-in {
    background-color: var(--krm-status-checked-in);
}

.krm-db-chk-checked-out {
    background-color: var(--krm-status-checked-out);
}

.krm-db-chk-no-show {
    background-color: var(--krm-status-no-show);
}


/* ===== LEGEND ===== */
.krm-db-legend {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: center !important;
    flex: 1;
    min-width: 0;
    /* QUAN TRỌNG: Cho phép co nhỏ */
    overflow-x: auto;
    /* Cho phép scroll nếu cần */
    /*    padding: 4px 0;*/
    scrollbar-width: thin;
}

.krm-db-legend::-webkit-scrollbar {
    height: 4px;
}

.krm-db-legend::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.krm-db-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    /* Không bị co lại */
}

.krm-db-legend-box {
    width: 16px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* ===== LEGEND ===== */
.krm-db-legend-pending {
    background: var(--krm-status-pending);
}

.krm-db-legend-approved {
    background: var(--krm-status-approved);
}

.krm-db-legend-waiting-checkin {
    background: var(--krm-status-checked-in);
}

.krm-db-legend-checked-in {
    background: var(--krm-status-checked-in);
}

.krm-db-legend-waiting-payment {
    background: #FF5722;
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 160px;
    /* Giảm từ 180px */
}

.btn-filter-open {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #F57C00;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 34px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-filter-open i {
    font-size: 14px;
}

/* Điều chỉnh responsive breakpoint */
@media (max-width: 1200px) {
    .krm-date-selector .row {
        min-width: 180px;
    }

    .krm-db-legend {
        gap: 8px;
    }

    .krm-db-legend-item {
        font-size: 11px;
        padding: 3px 6px;
    }

    .filter-buttons {
        min-width: 140px;
    }
}

@media (max-width: 992px) {
    .krm-date-selector {
        flex-wrap: wrap;
        gap: 10px;
    }

    .krm-date-selector .row {
        min-width: 100%;
        order: 1;
        justify-content: center;
    }

    .krm-db-legend {
        min-width: 100%;
        order: 2;
        justify-content: center;
        overflow-x: auto;
    }

    .filter-buttons {
        min-width: 100%;
        order: 3;
        justify-content: center;
    }
}

/* ===== SCHEDULE TABLE ===== */
/* ===== SCHEDULE TABLE - FIXED STICKY HEADER ===== */

/* Container cần có max-height và overflow */
.schedule-container {
    overflow: auto;
    /* Thay vì overflow-x: auto */
    margin-bottom: 20px;
    max-height: calc(100vh - 300px);
    /* Điều chỉnh theo layout của bạn */
    position: relative;
}

.schedule-table {
    margin: auto;
    border-collapse: collapse;
    background: white;
    position: relative;
    width: 100%;
    /* Using table-layout: fixed for predictable column widths */
    /* This ensures slots align perfectly with time headers */
    table-layout: fixed;
}

/* QUAN TRỌNG: thead phải sticky */
.schedule-table thead {
    position: sticky;
    top: 0;
    z-index: 100;
    /* Tăng z-index để luôn ở trên cùng */
    background: #1976D2;
    color: white;
}

/* Tất cả th trong thead */
.schedule-table thead th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    background: #1976D2;
    /* Đảm bảo background luôn có */
    position: sticky;
    top: 0;
    /*            z-index: 100;*/
}

/* Sticky columns trong header - QUAN TRỌNG */
.building-header-cell,
.floor-header-cell,
.room-header-cell {
    position: sticky;
    left: 0;
    z-index: 101;
    /* Cao hơn thead thường để luôn hiển thị khi scroll ngang */
    background: #1976D2;
    width: 60px;
}

.floor-header-cell {
    left: 60px;
    z-index: 101;
}

.room-header-cell {
    left: 120px;
    width: 100px;
    z-index: 101;
}

.time-header {
    /* Minimum width per hour column (spans 2 slots) */
    /* min-width: 80px; - Removed for table-layout: fixed to work */
    background: #1976D2;
    /* Đảm bảo có background */
    z-index: 90;
}

/* ===== ROOM ROWS ===== */
.room-row {
    position: relative;
}

.room-row:hover {
    background: #f5f5f5;
}

/* Sticky columns trong body - z-index thấp hơn header */
.building-cell,
.floor-cell,
.room-name-cell {
    position: sticky;
    background: white;
    border: 1px solid #ddd;
    text-align: center;
    font-weight: 500;
    z-index: 10;
    /* Thấp hơn header */
}

.building-cell {
    left: 0;
    width: 60px;
    color: white;
    background: #1976d2;
    z-index: 10;
}

.floor-cell {
    left: 60px;
    width: 60px;
    background: #1976d2;
    color: white;
    z-index: 10;
}

.room-name-cell {
    left: 120px;
    width: 100px;
    /* Match header width */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: white;
    z-index: 10;
}

.room-name-cell:hover {
    background: #E1F5FE;
}

.room-name-cell-room-name p {
    margin: 0;
    font-size: 14px;
    color: #1976D2;
}

.info-icon {
    color: #1976D2;
    font-size: 18px;
}

/* ===== THÊM SHADOW KHI SCROLL ===== */
.schedule-table thead th::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== TIME SLOTS ===== */
.time-slot-wrapper {
    position: relative;
    border: 1px solid #e0e0e0;
    border-right: none;
    height: 100%;
    background: #fafafa;
}

.time-slot-wrapper:last-child {
    border-right: 1px solid #e0e0e0;
}

.time-slot-wrapper.non-working {
    background: repeating-linear-gradient(45deg, #f5f5f5, #f5f5f5 10px, #e0e0e0 10px, #e0e0e0 20px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .schedule-container {
        max-height: calc(100vh - 350px);
    }

    .schedule-table th,
    .schedule-table td {
        font-size: 12px;
        padding: 6px 4px;
    }
}

/* ===== FIX CHO BOOKING BLOCKS ===== */
/* Đảm bảo booking blocks không bị che bởi sticky elements */
.booking-block {
    border-radius: 6px;
    cursor: pointer;
    padding: 6px 4px;
    color: white;
    font-size: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 1;
    /* Thấp hơn sticky columns */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.booking-block-no-show {
    background: var(--krm-status-no-show);
}

.booking-block-checked-out {
    background: var(--krm-status-checked-out);
}

.booking-block-pending {
    background: var(--krm-status-pending);
    /*    color: #365314;*/
}

.booking-block-approved {
    background: var(--krm-status-approved);
}

.booking-block-waiting-checkin {
    background: var(--krm-status-approved);
}

.booking-block-checked-in {
    background: var(--krm-status-checked-in);
}

.booking-block-waiting-payment {
    background: linear-gradient(135deg, #FF5722 0%, #E64A19 100%);
}

.booking-id {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 2px;
}

.booking-time {
    font-size: 11px;
    opacity: 0.9;
}

.booking-info {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

.booking-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
}

.booking-status-badge {
    padding: 2px;
    border-radius: 3px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .krm-db-legend {
        font-size: 12px;
    }

    .krm-db-legend-box {
        width: 24px;
        height: 16px;
    }

    .schedule-table th,
    .schedule-table td {
        font-size: 12px;
        padding: 6px 4px;
    }

    .booking-block {
        font-size: 10px;
        padding: 4px 6px;
    }
}




/*    ==============================================================*/
/* Đảm bảo các cell trong row có chiều cao đúng */
.building-cell,
.floor-cell,
.room-name-cell {
    /*    height: 40px !important;*/
    vertical-align: central !important;
}

/* ============================TOOLTIP hover infor booking order=======================================*/
.booking-tooltip {
    position: fixed;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-size: 13px;
    min-width: 220px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.booking-tooltip.show {
    opacity: 1;
}

.booking-tooltip-row {
    display: flex;
    margin-bottom: 6px;
    line-height: 1.4;
}

.booking-tooltip-row:last-child {
    margin-bottom: 0;
}

.booking-tooltip-label {
    font-weight: 600;
    color: #555;
    min-width: 90px;
}

.booking-tooltip-value {
    color: #333;
}

.booking-block {
    border-radius: 4px;
    transition: transform 0.1s, box-shadow 0.1s;
}

.booking-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
}



/*=================================CSS BOOKING details POpup =================================*/

.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
}

.timeline-title {
    font-size: 14px !important;
}

.timeline-date {
    font-size: 12px !important;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    width: 2px;
    height: 30px;
    background-color: #dee2e6;
}

.timeline-marker {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    background-color: #6c757d;
    transition: all 0.3s;
}

.timeline-marker.pending {
    background-color: #ffc107;
    color: #000;
}

.timeline-marker.approved {
    background-color: #0d6efd;
}

.timeline-marker.checkedin {
    background-color: #198754;
}

.timeline-marker.checkedout {
    background-color: #fd7e14;
}

.timeline-marker.paid {
    background-color: #20c997;
}

.timeline-marker.disabled {
    opacity: 0.4;
}

.timeline-content h6 {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

.timeline-date {
    font-size: 12px;
}

/* Fix z-index cho nested modals */
/* CSS tổng quát cho tất cả nested modals */
.modal {
    z-index: 1055 !important;
}

.modal-backdrop {
    z-index: 1054 !important;
}

/* Modal thứ hai luôn có z-index cao hơn */
.modal.show~.modal {
    z-index: 1061 !important;
}

.modal-backdrop.show~.modal-backdrop {
    z-index: 1060 !important;
}

/*    màu trạng thái */
.krm-status-new {
    background: var(--krm-status-new);
    color: #fff;
}

.krm-status-pending {
    background: var(--krm-status-pending);
    color: #fff;
}

.krm-status-approved {
    background: var(--krm-status-approved);
    color: #fff;
}

.krm-status-checked-in {
    background: var(--krm-status-checked-in);
    color: #fff;
}

.krm-status-checked-out {
    background: var(--krm-status-checked-out);
    color: #fff;
}

.krm-status-cancelled {
    background: var(--krm-status-cancelled);
    color: #fff;
}

.krm-status-rejected {
    background: var(--krm-status-rejected);
    color: #fff;
}

.krm-status-no-show {
    background: var(--krm-status-no-show);
    color: #fff;
}

/*=================================CSS TOOLTIP INFORMATION TRANSACTION KHI HOVER VÀO ĐƠN ĐẶT/*=================================*/
/*=================================CSS TOOLTIP INFORMATION TRANSACTION KHI HOVER VÀO ĐƠN ĐẶT/*=================================*/
/*    độ ưu tiên */
.priority-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.booking-status-badge.has-priority-icon {
    padding-left: 14px !important;
}

.priority-badge.priority-extreme {
    border-color: #DC2626;
    animation: priority-pulse-glow 2s ease-in-out infinite;
}

.priority-badge.priority-high {
    border-color: #F59E0B;
}

@keyframes priority-pulse-glow {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.6);
    }
}


#bookingTooltipEnhanced {
    position: fixed;
    z-index: 10000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    display: none;
    min-width: 600px;
    max-width: 750px;
    /*        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}

#bookingTooltipEnhanced .tooltip-header {
    background: #2c3e50;
    color: white;
    padding: 12px 15px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 14px;
}

#bookingTooltipEnhanced .tooltip-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 10px;
    padding: 6px 6px;
}

#bookingTooltipEnhanced .info-section {
    padding-right: 15px;
    border-right: 1px solid #eee;
}

#bookingTooltipEnhanced .members-section {
    /*        padding-left: 10px;*/
}

#bookingTooltipEnhanced .info-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.5;
}

#bookingTooltipEnhanced .info-label {
    font-weight: 600;
    color: #555;
}

#bookingTooltipEnhanced .info-value {
    color: #333;
}

#bookingTooltipEnhanced .members-header {
    font-weight: 700;
    font-size: 12px;
    color: #2c3e50;
    margin-bottom: 4px;
    padding-bottom: 2px;
    border-bottom: 2px solid #3498db;
}

#bookingTooltipEnhanced .members-list {
    /*        280px;*/
    max-height: 130px;
    overflow-y: auto;
    padding-right: 5px;
}

#bookingTooltipEnhanced .members-list::-webkit-scrollbar {
    width: 6px;
}

#bookingTooltipEnhanced .members-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#bookingTooltipEnhanced .members-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

#bookingTooltipEnhanced .members-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#bookingTooltipEnhanced .member-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 2px 4px;
    margin-bottom: 4px;
    transition: all 0.2s;
}

#bookingTooltipEnhanced .member-card:hover {
    background: #e9ecef;
    border-color: #3498db;
    transform: translateX(3px);
}

#bookingTooltipEnhanced .member-name {
    font-weight: 700;
    font-size: 13px;
    color: #2c3e50;
    margin-bottom: 4px;
}

#bookingTooltipEnhanced .member-detail {
    font-size: 12px;
    color: #666;
    margin: 2px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

#bookingTooltipEnhanced .member-detail i {
    width: 14px;
    color: #7f8c8d;
}

#bookingTooltipEnhanced .tooltip-actions {
    display: flex;
    gap: 10px;
    margin-top: 0;
    border-top: 1px solid #eee;
    /*        grid-column: 1 / -1;*/
}

#bookingTooltipEnhanced .btn-tooltip {
    flex: 1;
    padding: 4px 8px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#bookingTooltipEnhanced .btn-reject {
    background: #e74c3c;
    color: white;
}

#bookingTooltipEnhanced .btn-reject:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

#bookingTooltipEnhanced .btn-approve {
    background: #27ae60;
    color: white;
}

#bookingTooltipEnhanced .btn-approve:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
}

#bookingTooltipEnhanced .status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

#bookingTooltipEnhanced .status-pending {
    background: var(--krm-status-pending);
    color: #ffffff;
}

#bookingTooltipEnhanced .status-approved {
    background: var(--krm-status-approved);
    color: #ffffff;
}

#bookingTooltipEnhanced .status-checkedin {
    background: var(--krm-status-checked-in);
    color: #ffffff;
}

#bookingTooltipEnhanced .status-completed {
    background: var(--krm-status-checked-out);
    color: #ffffff;
}

#bookingTooltipEnhanced .empty-members {
    text-align: center;
    padding: 30px;
    color: #999;
    font-style: italic;
}



/*====================================CSS MÀU KHI CÁC SLOT ĐÃ BỊ BOOKED, QUÁ KHỨ, OVERLAP====================================*/
/*====================================CSS MÀU KHI CÁC SLOT ĐÃ BỊ BOOKED, QUÁ KHỨ, OVERLAP====================================*/
.time-slot {
    transition: background 0.2s ease, border 0.2s ease;
    user-select: none;
}

/* Slot có thể click - màu trắng */
.time-slot:not(.disabled):not(.booked) {
    background: #ffffff !important;
    transition: background 0.2s ease;
}

/* Hover effect cho slot có thể click */
.time-slot:not(.disabled):not(.booked):hover {
    background: #e3f2fd !important;
    border-color: #2196F3 !important;
}

/* Slot bị disable (quá khứ, ngoài giờ) - màu xám */
.time-slot.disabled {
    background: #e0e0e0 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Slot đã được chọn */
.time-slot.selected {
    background: #FF9800 !important;
/*    border: 2px solid #F57C00 !important;*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Slot có booking (sẽ bị che bởi booking block) */
.time-slot.booked {
    pointer-events: none;
}