/* public/assets/css/style.css */

/* Simple fade animation for the mobile dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out forwards;
}

/* Optional: Enforce a font that matches the clean corporate look if not set by Tailwind config */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Custom scrollbar for webkit browsers if the page gets long */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #5c59e6; 
    border-radius: 4px;
}