body{
    margin: 0;
    font-family: 'Arial';
    touch-action: manipulation;
    background-color: black;
}

/*#region toepen*/
.toep-container{
    width: 100vw;
    min-height: 100vh;
    height: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    background-color: #53354A;
}

.toepen-header{
    display: flex;
    justify-content: center;
    font-size: 30px;
    padding: 6px;
    font-weight: bold;
    text-shadow: -1px 0 #E84545, 0 1px #E84545, 1px 0 #E84545, 0 -1px #E84545, -1px -1px #E84545, -1px 1px #E84545, 1px -1px #E84545, 1px 1px #E84545;
    color: #2B2E4A;
    background-color: #2B2E4A;
    border-top: 4px solid #E84545;
    border-bottom: 5px solid #E84545;
}

.toepen-pc-size-container {
    width: 100%;
}

.toep-gebruiker-toevoegen{
    height: 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5%;
    padding: 2%;
    border-radius: 5px;
    background-color: #903749;
}

.gebruiker-toevoegen-input{
    display: flex;
    flex-grow: 1;
    height: 10vw;
    padding: 0;
    padding-left: 16px;
    background-color: #E84545;
    color: #2B2E4A;
    border: none;
    border-radius: 3px;
}
.gebruiker-toevoegen-input::placeholder {
    color: #2B2E4A;
}
.gebruiker-toevoegen-input:focus {
    outline: 2px solid #2B2E4A;
}

.gebruiker-toevoegen-button{
    margin-left: 2%;
    width: 10vw;
    height: 10vw;
    font-size: 18px;
    color: #E84545;
    background-color: #2B2E4A;
}

.toep-gebruikers{
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.toep-gebruiker{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 2%;
    padding: 2%;
    border-radius: 5px;
    background-color: #903749;
}
.toep-naam-score-button-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 2vw;
    padding-bottom: 2vw;
    border-radius: 3px;
    background-color: #E84545;
}

.toep-gebruiker-naam-score{
    display: flex;
    height: 14vw;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.toep-gebruiker-naam{
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #2B2E4A;
}
.toep-gebruiker-naam::first-letter {
    text-transform: uppercase;
}

.toep-gebruiker-score{
    font-size: 25px;
    font-weight: bold;
    color: #2B2E4A;
}

.toep-gebruiker-score-buttons{
    display: flex;
    flex-direction: row;
}

.toep-gebruiker-score-button{
    width: 10vw;
    height: 10vw;
    margin-left: 2vw;
    font-size: 18px;
}
.toep-gebruiker-score-button + .toep-gebruiker-score-button {
    margin-right: 2vw;
}

.bitchpunten{
    display: flex;
    height: 14vw;
    align-items: center;
    margin-left: 2vw;
    border-radius: 3px;
    background-color: #E84545;
    padding-right: 2vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
}

.bitchpunten-text-score{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 2vw;
    margin-right: 2vw;
}

.bitchpunten-text{
    padding-top: .5vh;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #2B2E4A;
}

.bitchpunten-score{
    font-size: 20px;
    font-weight: bold;
    color: #2B2E4A;
}

.bitchpunten-buttons {

}

.bitchpunten-button{
    width: 6vw;
    height: 6vw;
    font-weight: bold;
}
.bitchpunten-button + .bitchpunten-button {
    margin-top: 1vw;
}

.delete-reset-gebruiker {
    display: flex;
    flex-direction: column;
    height: 14vw;
    align-items: center;
    justify-content: center;
    margin-left: 2vw;
    border-radius: 3px;
    padding: 2vw;
    background-color: #E84545;
}

.delete-reset-gebruiker-button{
    width: 6vw;
    height: 6vw;
    font-weight: bold;
}
.delete-reset-gebruiker-button + .delete-reset-gebruiker-button {
    margin-top: 1vw;
}

.toep-buttons{
    border-radius: 3px;
    border: 0;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E84545;
    background-color: #2B2E4A;
}

@media screen and (min-width: 400px) {
    .toepen-pc-size-container {
        width: 400px;
        margin: 0 auto;
    }
    .toep-gebruiker-toevoegen{
        height: 40px;
    }
    .gebruiker-toevoegen-input{
        height: 40px;
    }
    .gebruiker-toevoegen-button{
        width: 40px;
        height: 40px;
    }
    .toep-naam-score-button-wrapper{
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .toep-gebruiker-naam-score{
        height: 56px;
        width: 100%; /*check*/
    }
    .toep-gebruiker-score-button{
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }
    .toep-gebruiker-score-button + .toep-gebruiker-score-button {
        margin-right: 8px;
    }
    .bitchpunten{
        height: 56px;
        margin-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .bitchpunten-text-score{
        margin-left: 8px;
        margin-right: 8px;
    }
    .bitchpunten-text{
        padding-top: 2px;
    }
    .bitchpunten-button{
        width: 24px;
        height: 24px;
    }
    .bitchpunten-button + .bitchpunten-button {
        margin-top: 4px;
    }

    .delete-reset-gebruiker {
        height: 56px;
        margin-left: 8px;
        padding: 8px;
    }
    .delete-reset-gebruiker-button{
        width: 24px;
        height: 24px;
    }
    .delete-reset-gebruiker-button + .delete-reset-gebruiker-button {
        margin-top: 4px;
    }
}
/*#endregion*/
