@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html,
body,
#root,
.Root {
   height: 100%;
}

* {
   box-sizing: border-box;
}

body {
   margin: 0;
   padding: 0;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
   width: 8px;
   height: 8px;
}

::-webkit-scrollbar-track {
   background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
   background: rgba(255, 255, 255, 0.15);
   border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
   background: rgba(255, 255, 255, 0.25);
}

/* Selection */
::selection {
   background: rgba(99, 102, 241, 0.3);
}

/* Focus outline */
*:focus-visible {
   outline: 2px solid rgba(99, 102, 241, 0.5);
   outline-offset: 2px;
}

/* Smooth transitions */
a,
button {
   transition: all 0.2s ease;
}
