/* Custom styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Animation for menu items */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bg-white > div {
    animation: fadeIn 0.5s ease-out forwards;
}

.bg-white > div:nth-child(1) { animation-delay: 0.1s; }
.bg-white > div:nth-child(2) { animation-delay: 0.2s; }
.bg-white > div:nth-child(3) { animation-delay: 0.3s; }
.bg-white > div:nth-child(4) { animation-delay: 0.4s; }
.bg-white > div:nth-child(5) { animation-delay: 0.5s; }

/* Hover effects */
.bg-white:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a365d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #153e75;
}