﻿.words-remaining-progress-bar-container {
    background-color: rgb(192, 192, 192);
    border-radius: 15px;
    height: 10px;
    padding: 0px;
    margin: 5px;
}

.round-info-container{
    display: flex;
    justify-content: center;
}

.round-identifier {
    font-family: var(--application-font-family);
    border: 1px solid #787c7e;
    border-radius: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    width: fit-content;
    align-self: center;
    margin-right: 5px;
}

.remaining-words {
    font-family: var(--application-font-family);
    border: 1px solid #787c7e;
    border-radius: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    width: fit-content;
    align-self: center;
    margin-left: 5px;
}

.progress {
    background-color: #69aa64;
    color: white;
    text-align: center;
    font-size: 18px;
    border-radius: 15px;
    height: inherit;
    transition: width 3s ease;
}

.suggestions-container {
    display: flex;
    justify-content: center;
}

.guess-word-input {
    font-family: var(--application-font-family);
    height: 40px;
    width: 270px;
    text-align: center;
    border: 1px solid #b0b0b0;
    border-radius: 50px;
    font-size: 22px;
    outline: none;
}

.toggle-tiles-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn-container{
    text-align: center;
}

.control-area-header {
    font-family: var(--application-font-family);
}

.warning-banner {
    color: #fff;
    font-family: var(--application-font-family);
    margin-top: 10px;
    padding: 10px;
    margin-bottom: 5px;
    text-align: center;
    border-radius: 15px;
}



@keyframes progressBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}
