body {
  display: flex;
}

#sidebar {
  width: 200px; /* Adjust as needed */
  height: 80vh;
  background-color: #f4f4f4;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
/*
#assignmentTable {
  margin-left: 40px; 
  border-collapse: collapse;
}

#assignmentTable td {
  border: 2px solid #000;
  width: 120px; 
  height: 35px; 
  text-align: center;
  vertical-align: middle;
}
*/
/* Existing styles... */

/* New style for people list entries */
.peopleEntry {
  margin-top: 10px;
  color: white; /* Ensures text contrast on colored backgrounds */
}
#tableContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 120px; /* Adjust based on sidebar width */
}

#winningTeamLabel {
  text-align: center;
  margin-bottom: 5px;
  margin-top: 20px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}

#tableAndLosingLabel {
  display: flex;
  flex-direction: row;
}

#losingTeamLabel {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
  align-self: center; /* This centers the label vertically next to the table */
}

#assignmentTable {
  border-collapse: collapse;
}

#assignmentTable td {
  border: 2px solid #000;
  width: 80px; /* Increased width for a wider table */
  height: 60px; /* Height kept to minimize vertical scrolling */
  text-align: center;
  vertical-align: middle;
}
