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

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

.rounded-xl {
    border-radius: 20px;
}

.shadow-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transition-smooth {
    transition: all 0.3s ease;
}

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

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

::-webkit-scrollbar-thumb {
    background: #2D63FF;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a4fd8;
}