/* Import a highly legible, friendly font suitable for education apps */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  /* Legacy color variables preserved just in case you want to use them later */
  --pri: #2563eb;
  --pri-l: #eff6ff;
  --pri-d: #1d4ed8;
  --dark: #1e293b;
  --text: #334155;
  --muted: #64748b;
  --border: #dbeafe;
  --bg: #f0f9ff;
  --card: #ffffff;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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