
/* Vanilla Form Styles */
.vf-invalid {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
}

.vf-valid {
    border-color: #198754 !important;
}

.notification-box {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
    display: block !important; /* Always visible, content just changes */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-box.success {
    opacity: 1;
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.notification-box.error {
    opacity: 1;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Fix for older browsers */
.vanilla-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
