.booked-room-card {
    border: 1px solid #D9EEF3;
    border-radius: 16px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #2c3e50;
    margin-top: 10px;
}

.booked-room-card-upper {
    display: flex;
    gap: 12px;
}

.booked-room-card-image-container {
    border-radius: 10px;
    overflow: hidden;
    height: 160px; 
    width: 160px;
}

.booked-room-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
}

.booked-room-card-image.default{
    width: 100%;
    height: 100%;
    min-width: 160px;
}

.booked-room-card-details-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booked-room-card-title {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #132D2F;
}

.booked-room-card-amenities-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.booked-room-card-amenity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.booked-room-card-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 4px;
    display: inline-block;
}

.booked-room-card-amenity-text {
    font-size: 12px;
    color: #132D2F;
}

.booked-room-card-booking-dates {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.booked-room-card-date-text {
    font-size: 12px;
    color: #132D2F;
}

.booked-room-card-cancellation-policy-box {
    background-color: #F5F4F4;
    border-radius: 12px;
    padding: 8px;
}

.booked-room-card-cancellation-policy-title {
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 600;
}

.booked-room-card-cancellation-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #4E4E4E;
}

.booked-room-card-cancellation-policy-list li {
    margin-bottom: 4px;
}

.booked-room-card-cancellation-policy-list .bullet {
    margin-right: 8px;
}

.booked-room-card-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.booked-room-card-total-paid-text {
    font-size: 12px;
    color: #132D2F;
}

.booked-room-card-price-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.booked-room-card-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .booked-room-card-upper {
        flex-direction: column;
    }

    .booked-room-card-image-container {
        width: 100%;
    }
}