/* Style everything on the page */
* {
  box-sizing: border-box; /* Include padding/border in width */
  font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Page basics */
body {
  background-color: #185592; /* Blue background */
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #40566b; /* Text color */
}

/* Top header area */
header {
  background-color: #003f5c; /* Dark blue */
  color: #ffa600; /* Orange text */
  padding: 1em;
  text-align: center;
}

header h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  letter-spacing: 5px;
  text-decoration: underline;
}

/* Navigation links in header */
header nav a {
  color: #ffa600;
  text-decoration: underline;
  margin: 0 14px;
  font-weight: bold;
}

header nav a:hover {
  color: #ff7c43; /* Lighter orange */
}

/* Current date text */
#current-date {
  font-weight: bold;
  text-decoration: underline;
  color: #ffa600;
  font-size: 1.3em;
  text-align: center;
}

/* Highlight style for section titles */
.callout {
  background-color: #0c78d6; /* Bright blue */
  color: #00293a; /* Dark blue text */
  text-decoration: underline;
  font-weight: bolder;
  padding: 0.3em 0.4em;
  border-radius: 9px;
}

/* Links hover effect */
a:hover {
  color: #ff7c43;
}

/* Main content area */
main {
  padding: 1.2em;
  max-width: 900px;
  margin: auto;
}

/* Section boxes */
section {
  margin-bottom: 1.5em;
  background-color: white;
  padding: 1.2em;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

table, th, td {
  border: 1px solid #270acc; /* Blue border */
}

th {
  background-color: white;
}

th, td {
  padding: 0.6em;
  text-align: left;
}

caption {
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

/* Lists */
ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Forms */
form {
  background-color: #eef2f5; /* Light grey */
  padding: 1em;
  border-radius: 5px;
}

label {
  display: block;
  margin-top: 0.5em;
}

/* Buttons */
button {
  background-color: #003f5c; /* Dark blue */
  color: white;
  padding: 0.6em 1.2em;
  border: none;
  cursor: pointer;
  margin-top: 0.5em;
  border-radius: 4px;
}

button:hover {
  background-color: #ff7c43; /* Orange */
}

/* Footer */
footer {
  background-color: #003f5c;
  color: white;
  padding: 1em;
  text-align: center;
  margin-top: 1em;
}

/* Figures (images/audio/video + captions) */
figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

figure figcaption {
  margin-bottom: 6px;
}

