/* Custom styles for LaidOffLaunch */

/* Prose customization */
.prose {
  --tw-prose-links: #2563eb;
}

.prose h2 {
  scroll-margin-top: 5rem;
}

.prose img {
  margin-left: auto;
  margin-right: auto;
}

.prose figure {
  margin: 2rem 0;
}

.prose figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Table styles */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th,
.prose td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.prose th {
  background-color: #f9fafb;
  font-weight: 600;
}

.prose tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Checklist styles */
.prose ul li input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Mobile responsive tables */
@media (max-width: 640px) {
  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
