/* Global CSS for Comic Book Autograde SPA */

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  color: #222;
  background: #f0f2f5;
}

#cba-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #2980b9;
}

button {
  font-family: inherit;
}

/* Toast slide-in animation */
@keyframes cbaSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Mobile: toast center bottom */
@media (max-width: 600px) {
  /* The ToastContainer uses inline styles, so we target the fixed container */
  /* The component itself handles mobile via JS — this is a safety net */
}

/* Responsive base */
@media (max-width: 768px) {
  html { font-size: 15px; }
}

