/* Crete AI Labs - Quiz App Styles */

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ensure full height */
html, body, #root {
  height: 100%;
  min-height: 100vh;
}

/* Selection styling */
::selection {
  background: rgba(0, 212, 170, 0.3);
  color: white;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid #00D4AA;
  outline-offset: 2px;
}
