/* XOneShopNet — Custom styles (Tailwind CDN pokrýva väčšinu) */

/* Flash messages animácia */
.flash-message {
    animation: fadeIn 0.3s ease-in;
}

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

/* Form error states */
.input-error {
    border-color: #ef4444 !important;
}

.error-text {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
