:root {
  color-scheme: light;
  --a11y-focus-outline: #0f172a;
  --a11y-muted-text: #475569;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: #f8fafc;
}

.text-slate-400 {
  color: var(--a11y-muted-text) !important;
}

.skip-link {
  position: relative;
  transform: translateY(-120%);
  transition: transform 0.15s ease-in-out;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--a11y-focus-outline);
  outline-offset: 2px;
}

.sr-only-focusable {
  position: absolute;
}

.sr-only-focusable:focus-within {
  position: fixed;
}

.header {
  padding: 1rem;
  background: #0f172a;
  color: #f8fafc;
}
.main-content {
  padding: 1.5rem;
}
.login-page {
  display: grid;
  place-items: center;
  min-height: 80vh;
}
.login-card {
  width: min(420px, 100%);
  padding: 2rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}
.login-card h1 {
  margin-top: 0;
}
.login-card label {
  display: block;
  margin-top: 1rem;
}
.login-card input {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
}
.login-card button {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem;
  border: none;
  background: #0f172a;
  color: white;
  border-radius: 0.75rem;
  cursor: pointer;
}

@media print {
  aside,
  header,
  .print-hide {
    display: none !important;
  }

  body,
  main {
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .print-doc {
    color: #111827;
  }

  .print-doc .rounded-3xl,
  .print-doc .rounded-2xl {
    box-shadow: none !important;
    border-color: #d1d5db !important;
    break-inside: avoid;
  }

  .print-doc table {
    width: 100%;
    border-collapse: collapse;
  }

  .print-doc th,
  .print-doc td {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.35rem 0.5rem;
  }

  .print-doc form,
  .print-doc button,
  .print-doc input,
  .print-doc select {
    display: none !important;
  }
}
