html {
    scroll-behavior: smooth;
}

/* Custom styles beyond Tailwind CSS */

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}

/* Message styles */
.messages .success {
    background-color: #DEF7EC;
    color: #03543F;
    border-left: 4px solid #0F766E;
}

.messages .error {
    background-color: #FDE8E8;
    color: #9B1C1C;
    border-left: 4px solid #DC2626;
}

.messages .warning {
    background-color: #FDF6B2;
    color: #723B13;
    border-left: 4px solid #D97706;
}

.messages .info {
    background-color: #E1EFFE;
    color: #1E429F;
    border-left: 4px solid #3B82F6;
}