/**
 * Custom CSS for FungasHead Theme
 * This file prevents 404 errors in the console
 */

/* Add any custom styles here */

/* Temporary fix for form submission issues */
.wpforms-form {
    position: relative;
}

/* Ensure proper AJAX loading states */
.wpforms-submit.wpforms-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Additional debugging styles */
.wpforms-ajax-error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
    padding: 15px;
    margin: 10px 0;
    border-radius: 3px;
}

.wpforms-ajax-success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 15px;
    margin: 10px 0;
    border-radius: 3px;
} 