@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --theme-color: #2563eb; 
    --theme-light: #eff6ff;
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f3f4f6; 
}

.bg-theme { background-color: var(--theme-color); }
.text-theme { color: var(--theme-color); }
.border-theme { border-color: var(--theme-color); }
.ring-theme:focus { 
    --tw-ring-color: var(--theme-color); 
    border-color: var(--theme-color); 
    outline: none; 
    box-shadow: 0 0 0 2px var(--theme-color); 
}
.bg-theme-light { background-color: var(--theme-light); }

.fade-in { animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(5px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }