.booking-list-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto; /* Thêm thanh cuộn nếu nội dung vượt quá viewport */
}
.booking-list-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    position: relative;
    max-height: 80vh; /* Giới hạn chiều cao tối đa của modal */
    overflow-y: auto; /* Thêm thanh cuộn khi nội dung vượt quá */
}
.booking-list-modal-content h3 {
    margin-top: 0;
}
.booking-list-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.booking-list-enter-info-btn {
    background: #0073aa;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
}
.booking-list-enter-info-btn:hover {
    background: #005d82;
}