/* Custom styles to supplement Tailwind */

:root {
    --primary: #0f766e;
    --primary-rgb: 15, 118, 110;
}

/* Smooth offset for anchor links due to fixed header */
html {
    scroll-padding-top: 80px; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Firebase Auth UI (will be generated by JS) */
.auth-modal {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
