body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 20px;
  background: #f4f4f4;
}

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

nav ul li {
  margin: 0 15px;
}

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

nav ul li a:hover {
  background: #555;
  border-radius: 5px;
}

section {
  max-width: 2000px;
  margin: 20px auto;
  padding: 20px;
}

h2 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* ===== Organizer Biographies ===== */
#biographies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.biography {
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  /* Fixed size */
  height: 500px;      /* adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.biography img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.biography h3 {
  font-size: 1.2em;
  margin: 10px 0;
}

.biography p {
  font-size: 1.2em;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}


header {
  background-color: #540a0a;  /* maroon */
  color: white;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 5px 0;
}

.logos {
  display: flex;
  justify-content: center;   /* centers all three groups */
  align-items: center;
  gap: 70px;                 /* space between left, center, right groups */
  margin-top: 30px;
  flex-wrap: wrap;
}

.left-logos, .right-logos {
  display: flex;
  gap: 10px;
  align-items: center;
}


.center-buttons {
  display: flex;
  gap: 10px;
}


.center-buttons a {
  background: yellowgreen;
  color: black;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.center-buttons a:hover {
  background: #5c913b;
}

.event-info {
  margin-top: 10px;
  font-size: 1.2em;
}

section p {
  font-size: 18px;
}

/* ===== Schedule Table Styling ===== */
#schedule table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden; /* keeps rounded corners */
}

#schedule caption {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #540a0a; /* maroon */
}

#schedule th {
  background-color: #540a0a; /* maroon header */
  color: white;
  padding: 12px;
  text-align: left;
  font-size: 16px;
}

#schedule td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

#schedule tr:nth-child(even) {
  background-color: #f9f9f9; /* zebra striping */
}

#schedule tr:hover {
  background-color: #f1f1f1; /* highlight on hover */
}

#schedule td:first-child {
  font-weight: bold;
  color: #333;
  width: 120px; /* time column width */
}
