@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #ffffff 0%, #f1eefc 100%);
  min-height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

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

::-webkit-scrollbar-track {
  background: #f3f4f5;
  border-radius: 4px;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #145cab;
}

/* Smooth transitions */
* {
  transition: all 0.2s ease-in-out;
}

/* Remove default button focus outline */
button:focus {
  outline: none;
}

/* Custom selection color */
::selection {
  background: rgba(114, 88, 223, 0.2);
}
