/* styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent; 
}
 
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

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

.section-view {
    animation: fadeIn 0.4s ease-out forwards;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Nav Active State */
.nav-item.active {
    background-color: #059669; /* brand-600 */
    color: white;
    box-shadow: 0 10px 15px -3px rgba(6, 78, 59, 0.2);
}

