#frazefrenzia-container {
    position: absolute;
    min-width: 100%;
    min-height: 80%;
    top: 13%;
}

#prompt-input, #response-input {
    /* display: block; */
    /* width:100%; */
    font-family: comfortta, sans-serif;
    font-size: 1rem;
    width: calc(100% - 22px);
    height: 100px;
    /* Account for padding and border */
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 12px;
    background-color: #00000000;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    text-transform: uppercase;
}

#prompt-input::placeholder, #response-input::placeholder {
    color: rgb(255, 255, 255);
    font-size: clamp(0.5rem, 1rem, 25px);
    opacity: 50%;
}

#prompt-input:focus, #response-input:focus {
    outline: none;
}

#prompt-submit-button, #response-submit-button {
    background-color: #ff006e;
    background-color: #1f2224;
    /* color: #ffbe0b; */
    font-family: Comfortaa, sans-serif;
    font-size: clamp(1em, 2vh, 25px);
    font-weight: bold;
    border-radius: 10% / 50%;
    border: 15px solid white;
}

#prompt-submit-button:disabled, #response-submit-button:disabled {
    background-color: #dddddd;
    font-size: clamp(1em, 2vh, 25px);
    color: rgba(255, 255, 255, 0.445)
}

#prompt-text{
    font-size: clamp(1em, 2vh, 25px);
    margin: 10px 0;
    padding: 11px;
    text-align: left;
}

#prompt-text-vote{
    font-size: clamp(1em, 2vh, 25px);
}

#playersWaitingDiv{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    /* border-block: 2px solid rgba(255, 255, 255, 0.381); */
    padding: 3% 1%;
    /* background:linear-gradient(135deg, hsl(210, 6%, 14%) 10%, hsl(210, 4%, 29%) 50%, hsl(216, 3%, 32%) 100%); */
    /* z-index: 5; */
}

.player-row-div{
    display: grid;
    grid-template-columns: 50% 25% 25%;
    justify-content: space-around;
    align-items: center;
    width:100%;
    border-top: 1px solid rgba(255, 255, 255, 0.234);
    padding-top: 3%;
    padding-bottom: 3%;
    opacity: 20%;
    text-align: left;
}

.player-row-div > div:first-child {
    flex: 0 1 40%; /* no grow, yes shrink, basis of 50% */
    min-width: 0; /* Ensures the div can shrink below its content size if needed (prevent overflow) */
    white-space: normal; 
}

#allPlayersResponsesDiv{
    display:flex;
    flex-direction: column;
    gap:5px;
    padding: 5%;
    padding-left: 40px;
    font-size: clamp(0.5em, 1.8vh, 20px);
}

.player-response-row-div{
    display: grid;
    grid-template-columns: 40% 80%;
    justify-content: space-around;
    align-items: center;
    width:100%;
    border-top: 1px solid rgba(255, 255, 255, 0.234);
    padding-top: 3%;
    padding-bottom: 3%;
    /* opacity: 20%; */
    text-align: left;
}

.ready-player{
    opacity:100%;
}

#voteDiv {
    max-height: 550px; /* Adjust based on your needs */
    overflow-y: auto; /* Enable vertical scrolling */
    background: #f0f0f00c; /* Light gray background */
    border: 4px solid #ffffff; /* Light gray border */
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-around;
    gap: 15px; /* Space between buttons */
}

.vote-button, .vote-button:focus, .vote-button:hover {
    margin: 0;
    padding: 10px 20px;
    font-size: 26px;
    color: #fff;
    background-color: #1d1d1d; 
    border:3px solid white;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vote-button-yours, .vote-button-yours:focus, .vote-button-yours:hover {
    /* background-color: rgba(0, 128, 0, 0.18); */
    /* border:2px solid white; */
    color: yellowgreen;
}

#otherPlayersVoteDiv, #yourVoteDiv{
    display: flex;
    flex-direction: column;
    gap:20px;
    width:100%;
    padding: 5%;
}

#otherPlayersVoteDiv{
    border-top: 1px solid white;
}

#otherPlayersVoteDiv{
    margin-bottom: 0px;
}

#voteResultsDiv {
    width:100%;
    max-height: 700px; 
    overflow-y: auto; 
    background: #0c0c0c60; 
    border-radius: 10px;
    padding-bottom: 20px;
    margin: 0;
    margin-top:-100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-around;
    font-size: 20px;
}

#voteResultsTableDiv {
    width:100%;
    overflow-y: auto; 
    background: #0c0c0c60; 
    font-size: 20px;
    margin-bottom: 20px;
}

#voteResultsDoneButton {
    width:70%;
}

.green-vote, #otherPlayersVoteList, #yourVoteCorrectAnswer, #yourVotePlayerName, #otherPlayersVotePoints, .response-player-name-div{
    color:greenyellow;
}

.red-vote{
    color:red;
}

#scoresDiv{
    display:flex;
    flex-direction: column;
    gap:20px;
}

#scoresDoneButton{
    padding: 3%;
    width: 80%;
    align-self: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-button {
    opacity: 0; 
    animation: fadeIn 1s forwards; 
}

.green-background{
    background-color: rgba(0, 128, 0, 0.346);
}

.red-background{
    background-color: rgb(255, 0, 0);
}

.other-players-vote-div{
    width:100%;
    padding: 10%;
    background-color: green;
}


.hidden{
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}