/* ── Fonts & Base ── */
body {
  font-family: 'Poppins', sans-serif;
}

/* ── Scrollbar ── */
.custom-scrollbar::-webkit-scrollbar         { height: 8px; width: 8px; }
.custom-scrollbar::-webkit-scrollbar-track   { background: #f1f5f9; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb   { background: #cbd5e1; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ── Utilities ── */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pattern-dots {
  background-image: radial-gradient(rgba(203, 213, 225, 0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}
