/* BlockWorld website styling */

body {
  background-color: white;
  color: black;
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Link styling - hardcoded blue links with red hover */
a {
  color: blue !important;
  text-decoration: none !important;
}

a:link {
  color: blue !important;
  text-decoration: none !important;
}

a:visited {
  color: blue !important;
  text-decoration: none !important;
}

a:hover {
  color: red !important;
  text-decoration: underline !important;
}

a:active {
  color: blue !important;
  text-decoration: none !important;
}

/* Utility class for non-bold text */
.notbold {
  font-weight: normal;
}