/* TaxBook Pro Frontend Styles */

/* Full Booking Form - Compact Style */
.taxbook-booking-form:not(.taxbook-booking-form-simple) {
    max-width: 500px;
    margin: 15px auto;
    padding: 15px;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) .form-group {
    margin-bottom: 10px;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) label {
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) input[type="text"],
.taxbook-booking-form:not(.taxbook-booking-form-simple) input[type="email"],
.taxbook-booking-form:not(.taxbook-booking-form-simple) input[type="tel"],
.taxbook-booking-form:not(.taxbook-booking-form-simple) input[type="date"],
.taxbook-booking-form:not(.taxbook-booking-form-simple) select,
.taxbook-booking-form:not(.taxbook-booking-form-simple) textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) textarea {
    resize: vertical;
    min-height: 60px;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) button[type="submit"] {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 5px;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) button[type="submit"]:hover {
    background: #135e96;
}

.taxbook-booking-form:not(.taxbook-booking-form-simple) button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#taxbook-booking-message {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 4px;
    display: none;
    font-size: 13px;
}

#taxbook-booking-message.success {
    background: #e6f7ee;
    border: 1px solid #00a32a;
    color: #00a32a;
}

#taxbook-booking-message.error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    color: #d63638;
}

/* Simple Form Specific Styles */
.taxbook-booking-form-simple {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    border: none;
}

.taxbook-booking-form-simple .form-group {
    margin-bottom: 15px;
}

.taxbook-booking-form-simple label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.taxbook-booking-form-simple input[type="text"],
.taxbook-booking-form-simple input[type="email"],
.taxbook-booking-form-simple input[type="tel"],
.taxbook-booking-form-simple input[type="date"],
.taxbook-booking-form-simple select,
.taxbook-booking-form-simple textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

.taxbook-booking-form-simple textarea {
    resize: vertical;
}

.taxbook-booking-form-simple button[type="submit"] {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.taxbook-booking-form-simple button[type="submit"]:hover {
    background: #135e96;
}

.taxbook-booking-form-simple button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.taxbook-booking-form-simple .form-section-title {
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
    color: #2271b1;
    font-size: 18px;
    font-weight: 600;
}

.taxbook-booking-form-simple .form-section-title:first-of-type {
    margin-top: 0;
}

#taxbook-simple-booking-message {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

#taxbook-simple-booking-message.success {
    background: #e6f7ee;
    border: 1px solid #00a32a;
    color: #00a32a;
}

#taxbook-simple-booking-message.error {
    background: #fcf0f1;
    border: 1px solid #d63638;
    color: #d63638;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .taxbook-booking-form:not(.taxbook-booking-form-simple) {
        margin: 10px;
        padding: 12px;
    }
    
    .taxbook-booking-form-simple {
        margin: 10px;
        padding: 15px;
    }
    
    .taxbook-booking-form:not(.taxbook-booking-form-simple) .form-group {
        margin-bottom: 8px;
    }
    
    .taxbook-booking-form:not(.taxbook-booking-form-simple) button[type="submit"] {
        width: 100%;
        padding: 10px;
    }
    
    .taxbook-booking-form-simple button[type="submit"] {
        width: 100%;
    }
}
