/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
}

/* Control panel container */
.control-panel-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  
}

/* Control panel team */
.control-panel-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 2px 2px;
}

/* Control panel team name */
.control-panel-team-name {
    font-size: 28px;
    font-weight: bold;
}

/* Control panel team score */
.control-panel-team-score {
    font-size: 72px;
    font-weight: bold;
    margin: 20px;
}

/* Control panel score buttons */
.control-panel-score-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Control panel score button */
.control-panel-score-button {
    font-size: 18px;
    font-weight: bold;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}
.spacer-line {
    height: 1px;
    margin: 10px 0;
    font-weight: bold;
  }
  
.control-panel-score-button:hover {
    background-color: #444;
}

/* Control panel team name input */
input[type="text"] {
    font-size: 18px;
    padding: 10px;
    border-color: #444;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Control panel update button */
button {
    font-size: 18px;
    font-weight: bold;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}
