/* Booking Card Styles */
.booking-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.room-img-container img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

.card-footer {
    transition: background 0.3s;
}

.card-footer:hover {
    background-color: #f1f1f1 !important;
}

/* Hiệu ứng xoay icon khi mở/đóng */
[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    transition: 0.3s;
}

.toggle-icon {
    transition: 0.3s;
}

/* Style cho các label thông tin chi tiết */
.detail-label {
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-left: 3px solid #1a1a1a;
    padding-left: 10px;
}

/* Điều chỉnh border và padding dựa trên màn hình */
@media (min-width: 768px) {
    .border-end {
        border-right: 1px solid #dee2e6 !important;
    }
}

@media (max-width: 767px) {
    .room-img-container {
        display: none; 
    }
    .border-end {
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .ps-md-4 {
        padding-left: 0 !important;
    }
}

/* Booking Card Styles */
.booking-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
}

/* Hiệu ứng xoay icon */
[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

/* Detail Labels */
.detail-label {
    color: #1a1a1a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-left: 3px solid #1a1a1a;
    padding-left: 10px;
}

/* Responsive */
@media (min-width: 768px) {
    .border-end {
        border-right: 1px solid #dee2e6 !important;
    }
}

@media (max-width: 767px) {
    .room-img-container {
        display: none; 
    }
    .border-end {
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}