
  
  /* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Ensure the body and html take full height */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Allow main content to expand, pushing footer to the bottom */

/* Style footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}


/* Header styling */
header {
  background-color: #333;
  color: #fff;
  padding: 1em 2em;
}

header h1 {
  margin-bottom: 0.5em;
}

/* Navigation styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  background: #333;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}

nav ul li:hover > a {
  background: #555;
}

nav ul .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #444;
  min-width: 150px;
  padding: 0;
}

nav ul li:hover .dropdown {
  display: block;
}

nav ul .dropdown li {
  width: 100%;
}

nav ul .dropdown li a {
  padding: 10px;
  display: block;
  color: white;
}

nav ul .dropdown li a:hover {
  background: #666;
}

/* Main content styling */
main {
  flex: 1;
  padding: 2em;
}

section {
  margin-bottom: 3em;
}

section h2 {
  margin-bottom: 0.5em;
}

section h3 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/* Weekly updates list styling */
ul li strong {
  font-weight: bold;
}

/* Footer styling */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
}

#weekly {
  background-color: white;
  border-radius: 6px;
}

details {
  margin-bottom: 1rem;
  border: 1px solid black;
  border-radius: 4px;
  background-color: white;
  padding: 0.5rem;
}

details summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
}

details[open] > summary > .summary-indicator {
  transform: rotate(90deg);
}

.summary-indicator {
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
}

.section-content {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

