

  label {
    display: block;
  }

  .selectcontainer {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
  }

  h1, h2 {
    text-align: center;
  }

  .game {
    margin-bottom: 10px;
  }

  select {
    width:100%;
    padding: 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
.regular-bowl {
  width: 80%;
}
  .textbox {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .rank-input {
    width: 16%;
    text-align: center;
    padding: 10px;
    margin: 5px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .selectcontainer button{
    width: 100%;
    background-color: #4caf50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  
  .selectcontainer button:hover {
    background-color: #45a049;
  }

  @media screen and (max-width: 600px) {
    body {
      padding: 10px;
    }

    .container {
      padding: 10px;
    }

    select, button {
      font-size: 16px;
    }
  }
  .round-title {
font-size: 1.2em;
}
.round-points {
font-size: 0.7em;
color: gray;
}
.submit-btn {
background-color: #4CAF50; /* Green background */
color: white; /* White text */
border: none; /* Remove border */
padding: 15px 32px; /* Padding for button size */
text-align: center; /* Center text */
text-decoration: none; /* Remove underline */
display: inline-block; /* Align inline */
font-size: 16px; /* Font size */
margin: 10px 0; /* Margin around the button */
cursor: pointer; /* Pointer cursor on hover */
border-radius: 8px; /* Rounded corners */
transition: background-color 0.3s, transform 0.2s; /* Smooth transition effects */
}

.submit-btn:hover {
background-color: #45a049; /* Darker green on hover */
transform: translateY(-2px); /* Slightly lift the button */
}

.submit-btn:active {
background-color: #388e3c; /* Even darker green on click */
transform: translateY(2px); /* Button depresses slightly when clicked */
}

.submit-btn:focus {
outline: none; /* Remove outline on focus */
box-shadow: 0 0 0 3px rgba(72, 156, 240, 0.5); /* Focus shadow effect */
}

#tiebreaker {
text-align: center;
width: 6em
}


.thank-you-container {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  .thank-you-container h1 {
    color: #2E86C1;
  }
  .thank-you-container p {
    font-size: 18px;
    color: #1F618D;
  }
  .selections {
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #2E86C1;
    border-radius: 10px;
    background-color: #E8F8F5;
  }
  .selections h2 {
    color: #2874A6;
    font-size: 22px;
  }
  .submission-container {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #2E86C1;
    border-radius: 10px;
    background-color: #f9f9f9;
  }
  .submission-title {
    color: #2E86C1;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .submission-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
  }
  .selection-list {
    border-top: 1px solid #ddd;
    padding-top: 10px;
  }
  .selection-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
  }
  .selection-rank {
    color: #888;
    font-size: 14px;
  }
  @media (max-width: 600px) {
    .selection-item {
      flex-direction: column;
    }
  }

  