:root {
  --color-primary: #000000;
  --color-secondary: #ec4899;
  --color-accent: #dc2626;
}

/* Custom styles for enhanced functionality */
.prose h1 {
  @apply text-3xl font-bold text-gray-900 mb-6;
}

.prose h2 {
  @apply text-2xl font-semibold text-gray-900 mb-4 mt-8;
}

.prose h3 {
  @apply text-xl font-medium text-gray-900 mb-3 mt-6;
}

.prose p {
  @apply text-gray-600 mb-4;
}

.prose ul {
  @apply mb-4;
}

.prose li {
  @apply text-gray-600 mb-1;
}

.prose table {
  @apply w-full border-collapse border border-gray-300 rounded-lg overflow-hidden;
}

.prose th {
  @apply bg-gray-50 px-4 py-3 text-left font-medium text-gray-900 border-b border-gray-300;
}

.prose td {
  @apply px-4 py-3 text-gray-600 border-b border-gray-200;
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Custom checkbox styles */
input[type="checkbox"] {
  accent-color: var(--color-primary);
}

/* Form validation styles */
.error {
  border-color: #ef4444 !important;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Loading state */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Transition for smooth interactions */
.transition-all {
  transition: all 0.3s ease;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
/* Cookie banner visibility — independent of Tailwind */
#cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#cookie-modal.hidden { display: none !important; }
