/* Minimal additional styles for compatibility */

/* Link styling for elements without Tailwind classes */
:where(
  :not([class*="no-underline"])
    a:not([class*="text-"]):not([class*="no-underline"])
) {
  text-decoration: underline;
  color: #1e3a8a;
  font-weight: 600;
}

.no-underline {
  text-decoration: none !important;
}
:where(a:not([class*="text-"]):not([class*="no-underline"])):hover {
  color: #1d4ed8;
}
