.gameContainer {
    text-align: center;
    display: none;
}

.loading {
    text-align: center;
}

.rosco {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.letter {
    width: 1.75rem; 
    height: 1.75rem;
    font-size: 1.5rem; 
    border: 2px solid black;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.definition {
    flex-grow: 1;
    min-width: 100px;
    padding: 2rem;
    width: 20vh;
    font-size: 2rem;
}

.definition-def {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 5px;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    height: 100%;
}

.definition-input {
    margin-top: 2rem;
}

.definition-commands {
    margin: 1rem;
}

.input {
    width: 100%;
    height: 3rem;
    font-size: 2rem;
    border: 2px solid black;
}

.board {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 50px;
    justify-content: center;
}

.pasapalabra {
    background-color:gold;
}

.current {
    background-color: lightblue;
}

.wrong {
    background-color: red;
    color: white;
}

.correct {
    background-color: green;
    color: white;
}

.points {
    border: 1px solid black;
    background-color: yellow;
    color: black;
    width: 75px;
    height: 75px;
    position: absolute;
    top: 145px;
    left: 145px;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.btnInit {
    width: 60px;
    height: 60px;
    border: 1px solid black;
    font-size: 40px;
}

.playersSelection {
    width: 100%;
    text-align: center;
    font-size: 30px;
}

.controls {
    display: none;
    text-align: center;
    font-size: 1rem;
}

.controlButton {
    min-width: 200px;
    margin: 5px;
	padding: 15px;
	font-size: clamp(1rem, 1.5rem, 2rem);
    color: black;
}

.btnStart {
    height: 60px;
    font-size: 30px;
    width: 200px;
}

.btnContinue {
    height: 60px;
    font-size: 30px;
    width: 300px;
}

.players {
    background-color: antiquewhite;
    border: 0.1rem solid black;
}

.playerBox {
    padding: 5px;
}

.game {
    display: none;
    border: 3px solid black;
    height: 620px;
}

.playerName {
    position: absolute;
    text-align: center;
    border: 1px solid black;
    background-color: orange;
    color: white;
    width: 100px;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    top: 250px;
    left: 135px;
    padding: 0.2rem;
}

.panel {
    display: flex;
    flex-direction: column;
}

.nextRound {
    font-weight: bold;
    margin: 10px;
    padding: 10px;
}

.btnNextRound {
    font-size: 1rem;
    margin: 10px;
}

.resultsPanel {
    margin: 2rem;
    padding: 1rem;
    height: 80vh;
    text-align: left;
    overflow-y: scroll;
}

.settingsPanel {
    background-color: white;
    padding: 1rem;
    box-sizing: border-box;
}

.VoiceAvailable {
    padding: 1rem;
    margin: 1rem;
}

.VoiceAvailable > div {
    padding: 1rem;
    margin: 1rem;
}

.VoiceSampleText {
    font-size: 1rem;
}

.VoiceSelector {
    font-size: 1rem;
    max-width: 90%;
}

.resultPoints {
    margin: 1rem;
    padding: 1rem;
    font-weight: bold;
}

.results {
    padding: 1rem;
    margin: 1rem;
    display: none;
}

.voiceTone {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: left;
}

.voiceSpeed {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: left;
}

.resultMessage {
    display: flex;
    flex-direction: column;
}