@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Tag colors */
.tag-school {
    background-color: #3b82f6;
    color: white;
}

.tag-urgent {
    background-color: #ef4444;
    color: white;
}

.tag-work {
    background-color: #10b981;
    color: white;
}

.tag-personal {
    background-color: #8b5cf6;
    color: white;
}

.tag-other {
    background-color: #6b7280;
    color: white;
}