body {
    font-family: Arial, sans-serif;
    background-color: #006400;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.scoreboard {
    background-color: #004b23;
    border: 5px solid #FFD700;
    border-radius: 10px;
    padding: 2vh 2vw;
    width: 100vw;
    max-width: 1400px;
    text-align: center;
    box-sizing: border-box;
}

.players {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2vw;
    flex-wrap: nowrap;
}

.player {
    background-color: #003a17;
    border-radius: 10px;
    padding: 2vh 1vw;
    flex: 1 1 45%;
    text-align: center;
    border: 3px solid #FFD700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"] {
    margin-top: 2vh;
    padding: 1vh;
    text-align: center;
    border: 2px solid #FFD700;
    border-radius: 5px;
    width: 90%;
    background-color: #e6e6e6;
    margin-bottom: 1vh;
    font-size: 4.5rem;
    font-weight: bold;
}

/* PLACAR AJUSTADO FINAL */
.score {
    font-size: 10.5rem;
    font-weight: bold;
    margin: 1.2vh 0 2.5vh 0;
    /* margem inferior maior */
    color: #FFD700;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 4vh;
    /* aumento aqui */
}

button {
    padding: 2vh 4vw;
    border: none;
    border-radius: 5px;
    background-color: #0cdd5f;
    color: black;
    cursor: pointer;
    transition: 0.3s;
    font-size: 3.5rem;
    font-weight: bold;
}

button:hover {
    background-color: #e0b500;
}
