/* Bulma overrides for font-family */

/* Override all Bulma font families to use Verdana */
.title,
.subtitle,
.button,
.input,
.textarea,
.select select,
.navbar-item,
.navbar-link,
.navbar-dropdown,
.dropdown-item,
.menu-label,
.menu-list a,
.content,
.tag,
.notification,
.card-header-title,
.card-content,
.message-header,
.message-body,
.tabs a,
.panel-heading,
.panel-tabs a,
.panel-block,
.field-label,
.label,
.modal-card-title,
.modal-card-body,
.pagination-link,
.file-cta {
  font-family: Verdana, Geneva, sans-serif !important;
}

/* Override Bulma's base font-family */
html {
  font-family: Verdana, Geneva, sans-serif !important;
}

/* Ensure code blocks still use monospace fonts and don't overflow */
code, pre {
  font-family: 'Courier New', Courier, monospace !important;
}

/* Ensure pre elements have a fixed max width */
pre {
  max-width: 650px;
  width: 100%;
  overflow-x: auto;
  white-space: pre;
  word-wrap: normal;
}