/* Styles for the new Airbnb-style booking confirmation modal */

/* Main layout containers in the modal body */
.booking-confirmation-body {
    padding: 0; /* Remove default modal padding */
}

.booking-main-content {
    padding: 24px;
}

.booking-footer {
    padding: 16px 24px;
    border-top: 1px solid #EBEBEB;
    background-color: #F7F7F7;
}

/* New container for the summary box */
.booking-summary-container {
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}


/* Property Details Card */
.property-details-card {
    display: flex;
    gap: 16px;
    /* border-bottom: 1px solid #EBEBEB; */ /* Removed as per user request */
    padding-bottom: 0;
    margin-bottom: 16px;
}

.property-details-card .image-container {
    width: 120px;
    height: 100px;
    flex-shrink: 0;
}

.property-details-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.property-details-card .info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.property-details-card .property-type {
    color: #717171;
    font-size: 0.875rem;
}

.property-details-card .property-name {
    color: #222222;
    font-size: 1rem;
    font-weight: 600;
}

/* Trip Details Section */
.trip-details-section h5,
.user-details-section h5,
.price-details-section h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #EBEBEB;
}

.detail-row .detail-label {
    font-weight: 600;
}

/* Price Details Section */
.price-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.price-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.125rem;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #EBEBEB;
}

/* User details form */
.user-details-section {
    padding-top: 0;
    border-top: none;
    margin-top: 0;
}
