/* Reset and base styles */
:root {
  --background: #00050d;
  --foreground: #fff;
}

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

body {
  font-family: 'PT Sans', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
}

/* Common link styles */
.student-link {
  color: #0066c0;
  text-decoration: none;
  margin-left: 0.25rem;
}

.student-link:hover {
  text-decoration: underline;
}

/* Common section styles */
.content-section {
  padding: 2rem;
  background: var(--background);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}