/* CV typenet — Global base styles (loaded alongside Tailwind CDN) */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background-color: #f5f1ec;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}

/* Toast alerts (injected by calert()) */
.toast { transition: transform 0.3s ease, opacity 0.3s ease; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #ebe7e1; }
::-webkit-scrollbar-thumb { background: #d3cec6; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #626260; }
