* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen,
    ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial,
    sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
}

.siteTitle {
  color: #4f5a4a;
  margin: 0;
  padding: 15px 0;
  font-size: 32px;
}

.content {
  margin: 0 auto;
}

.content h2 {
  margin: 0;
  padding: 15px 0;
  font-size: 22px;
  border-bottom: 1px solid #e0e0e3;
  color: #4f5a4a;
}

.content > p,
.content > div {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  margin: 25px 0;
  padding: 25px;
  background-color: #fff;
}

#scoreboardFilter {
  width: 100%; /* Full width */
  padding: 8px; /* Padding for better text visibility */
  border: 1px solid #ccc; /* Default light gray border */
  border-radius: 4px; /* Rounded corners */
  transition: border-color 0.3s ease; /* Smooth transition for border color change */
}

#scoreboardFilter:focus {
  outline: none; /* Removes the default focus outline */
  border-color: #808080; /* Changes border color to gray when focused */
}

.button {
  background-color: #7b8b66; /* Example background color */
  color: white; /* Text color */
  padding: 10px 20px; /* Padding around the text */
  border: none; /* No border */
  cursor: pointer; /* Pointer cursor on hover */
  transition: filter 0.3s ease; /* Smooth transition for the filter effect */
}

.button:hover {
  background-color:#4b6542; /* Full grayscale on hover */
}


.scoreboard {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
  color: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-radius: 8px;
  overflow: hidden;
}

.scoreboard th, .scoreboard td {
  border: 1px solid #e0e0e0;
  padding: 8px;
  text-align: left;
  color: #111;
}

.scoreboard th {
  background-color: #e8e8e8;
  color: #111;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: bold;
}

.scoreboard tr:nth-child(even) {
  background-color: #f7f7f7;
}

.scoreboard tr:nth-child(odd) {
  background-color: #fff;
}

/* .scoreboard tr:hover {background-color: #ececec;} */

.sponsor-container {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px)); /* Two columns with spacing */
  gap: 20px; /* Add space between images */
  justify-content: center; /* Center the grid horizontally */
}

.sponsorimage {
  width: 100%; /* Use full width of the grid column */
  height: auto; /* Maintain aspect ratio */
  display: block; /* This will make the image a block-level element */
}

.sponsorimage:first-child {
  grid-row: span 2; /* Span two rows */
}