/* Clean Professional Styles */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Micro Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-subtle {
    animation: bounceSubtle 2s infinite ease-in-out;
}

/* Form element overrides */
input[type=file]::file-selector-button {
    display: none;
}

/* Success Message Show Animation */
#successMessage.show {
    opacity: 1;
    transform: scale(1);
    z-index: 30;
}
