/*
Theme Name: EJA Child for Listeo
Theme URI: https://yourdomain.com/
Description: Child theme for Listeo with MotoPress booking sidebar integration
Author: Your Name
Template: listeo
Version: 1.0.0
*/

@import url('../listeo/style.css');

/* MotoPress Booking Widget Custom Styles */
.motopress-booking-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 24px 18px 18px 18px;
    margin-bottom: 32px;
}
.motopress-booking-widget .mphb_sc_booking_form-wrapper,
.motopress-booking-widget .mphb_sc_availability_calendar-wrapper {
    margin-bottom: 18px;
}
.motopress-booking-widget input,
.motopress-booking-widget select {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 1em;
}
.motopress-booking-widget button,
.motopress-booking-widget input[type="submit"] {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    width: 100%;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.motopress-booking-widget button:hover,
.motopress-booking-widget input[type="submit"]:hover {
    background: #1d4ed8;
}
@media (max-width: 768px) {
    .motopress-booking-widget {
        padding: 16px 8px 8px 8px;
    }
    .motopress-booking-widget .mphb_sc_booking_form-wrapper,
    .motopress-booking-widget .mphb_sc_availability_calendar-wrapper {
        margin-bottom: 12px;
    }
}
/* Listeo-style MotoPress Booking Form (Sidebar/Shortcode) */
.mphb_sc_booking_form-wrapper,
.mphb-booking-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 24px 20px 20px 20px;
    margin-bottom: 32px;
    border: 1px solid #e8e8e8;
}

.mphb-booking-form .mphb-required-fields-tip,
.mphb-booking-form .mphb-errors-wrapper {
    display: none;
}

.mphb-booking-form label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.mphb-booking-form input,
.mphb-booking-form select {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #e8e8e8;
    padding: 12px 15px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-bottom: 18px;
}

.mphb-booking-form input[type="submit"],
.mphb-booking-form button {
    background: #ffd600;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.mphb-booking-form input[type="submit"]:hover,
.mphb-booking-form button:hover {
    background: #ffb300;
}