:root {
  --md-primary-fg-color: #041E42; /* Official Nevada Blue */
}

/* --- Add this below your existing root variables --- */

/* Make content links a standard recognizable blue */
.md-typeset a {
  color: #007BFF; 
}

/* Optional: Add a slightly darker blue and an underline when hovering */
.md-typeset a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Accessibility: visible keyboard focus */
.md-typeset a:focus,
.md-typeset button:focus,
.md-typeset input:focus,
.md-typeset textarea:focus,
.md-typeset select:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Print-friendly workshop pages */
@media print {
  .md-header,
  .md-sidebar,
  .md-footer {
    display: none !important;
  }

  .md-content {
    margin: 0;
    padding: 0;
  }

  .md-typeset pre,
  .md-typeset code {
    page-break-inside: avoid;
  }
}
