/* Things Last - Custom styles beyond Tailwind */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

/* Table striping */
table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Prose overrides for content sections */
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
}

/* Chart containers */
.chart-container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

/* Print styles */
@media print {
  header, footer, .no-print { display: none; }
  main { max-width: 100%; padding: 0; }
}
