/* Clariworks CMS - Custom Styles */

/* Smooth transitions for interactive elements */
a, button, input, select {
    transition: all 0.15s ease;
}

/* Form focus states */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Mobile-friendly tap targets */
@media (max-width: 640px) {
    button, a.inline-block, input[type="submit"] {
        min-height: 44px;
    }
}

/* Flash message animations */
[role="alert"] {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
