/* Frontend CSS for Booking Widget */
.bmc-booking-widget {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
}

.bmc-booking-price-display {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.bmc-booking-price-display span.per-night {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

.bmc-form-group {
    margin-bottom: 15px;
}

.bmc-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.5px;
}

.bmc-booking-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
}

.bmc-booking-input:focus {
    border-color: #FF4E00;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 78, 0, 0.1);
}

.bmc-booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 18px;
    font-weight: 700;
}

.bmc-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: #FF4E00;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.bmc-btn-primary:hover {
    background: #e64600;
}

.bmc-booking-notice {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}