/* Multi-Category Booking Form Styles */

.mcb-booking-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mcb-form h3 {
    margin-top: 0;
    color: #333;
    text-align: center;
}

.mcb-field-group {
    margin-bottom: 15px;
}

.mcb-field-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.mcb-field-group input,
.mcb-field-group select,
.mcb-field-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.mcb-field-group input:focus,
.mcb-field-group select:focus,
.mcb-field-group textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.mcb-field-group small {
    color: #777;
    font-size: 12px;
}

.mcb-dynamic-fields {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.mcb-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.mcb-form button[type="submit"]:hover:not(:disabled) {
    background: #005a87;
}

.mcb-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.mcb-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.mcb-success {
    background: #d4edda;
    color: #155724;
}

.mcb-error {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 600px) {
    .mcb-booking-form-wrapper {
        padding: 15px;
    }
}