body {
  margin: 0;
  padding: 60px 0 0 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;             /* fixed height */
  box-sizing: border-box;   /* include padding inside height */
  padding: 0 2rem;          /* horizontal padding only */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

nav .logo {
  font-weight: bold;
  width: 60px;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

nav ul li {
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

nav ul li a {
  text-decoration: none;
  color: inherit;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #334;
}

/* Center the entire info-card horizontally on the page */
.info-card {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 900px;       /* limit max width so it doesn’t fill the whole page */
  margin: 0 auto;         /* center horizontally */
}

/* Image on the left */
.rl-image {
  margin-top: 100px;
  width: 390px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Right side container stacking text + roster vertically, centered content */
.text-and-roster {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  align-items: center;    /* center text and roster horizontally */
  text-align: center;
}

/* Paragraph text */
.info-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Roster container */
.roster-table-container {
  width: 100%;
  display: flex;
  justify-content: center; /* center the roster horizontally */
}

/* Styled like a table */
.roster-table {
  list-style: none;
  border-collapse: collapse;
  width: 500px;
  max-width: 600px;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.roster-table li {
  display: flex;
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}

.roster-table li:last-child {
  border-bottom: none;
}

/* Roles left column */
.role {
  flex: 1 1 40%;
  font-weight: bold;
  color: #2a9df4;
  text-align: left;
}

/* Names right column */
.names {
  flex: 1 1 60%;
  text-align: left;
}
