/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  margin: 0;
  padding: 0;
}

/* Layout Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff; /* Matches body background */
  padding: 20px;
}

/* Header Section */
header {
  text-align: center;
  margin-bottom: 30px;
}

/* Profile Image */
.headshot {
  width: 180px;
  border-radius: 0; /* Removes rounding to make it square */
}

/* Headings */
h1 {
  margin: 10px 0;
}

/* Contact Section */
#contact {
  color: #000000; /* Black text for consistency */
}

/* General Section Styling */
section {
  margin-bottom: 30px;
}

/* Timeline List Items */
#timeline li {
  cursor: pointer;
  margin: 10px 0;
  color: #007acc; /* Muted blue for emphasis */
  transition: text-decoration 0.3s ease;
}

#timeline li:hover {
  text-decoration: underline;
}

/* Job Information Toggle */
.job-info {
  display: none;
  margin-top: 10px;
  background-color: #f0f0f0; /* Light gray for contrast */
  color: #000000;
  padding: 10px;
  border-radius: 5px;
}

/* Badge Container */
code.badge-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 10px;
}
