.extra-services-checkout,
.mphb-reserve-rooms-details {
    margin: 20px 0;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 4px;
}

.mphb-reserve-rooms-details h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
}

.mphb-room-details {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.mphb-room-details:last-child {
    border-bottom: none;
}

.mphb-room-details h4 {
    margin-bottom: 10px;
    font-weight: bold;
}

.mphb-room-extra-services {
    margin-left: 15px;
}

.mphb-room-extra-service {
    margin-bottom: 10px;
}

.mphb-room-extra-service label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mphb-room-extra-service input[type="checkbox"] {
    margin: 0;
}

.mphb-room-extra-service-title {
    flex: 1;
    font-weight: normal;
}

.mphb-price {
    font-weight: bold;
}

/* Highlight the total price to show it's updated */
.mphb-total-price {
    transition: background-color 0.3s;
}

.mphb-total-price[data-extra-services-added="true"] {
    background-color: #f7fff7;
}