body {
    background-color: black;
    color: #C4AE81;
}

.btn {
    color: #C4AE81;
}

h1 {
    font-size: 50px;
}

#logo {
    width: 300px;
    height: 300px;
}

.margin-top-20px {
    margin-top: 20px;
}

.role-logo {
    height: 200px;
    width: 200px;
}

.role-logo-dash {
    height: 140px;
    width: 140px;
}

.role-count {
    display: flex;
    justify-content: center; /* по горизонталі */
    align-items: center; /* по вертикалі */
    height: 200px; /* або інша фіксована висота */
    font-size: 64px;
}

.btn-count .btn {
    width: 100%;
    height: 100%;
    font-size: 128px;
}

.button-section a {
    height: 100px;
    font-size: 40px;
    color: white !important;
}

input[name=password] {
    width: 100%;
}

#login {
    height: 60px;
    font-size: 35px;
}

#dash-table {
    font-size: 30px;
}
#dash-table td, #dash-table th{
    vertical-align: middle;
    text-align: center;
}

#dash-table input[type="checkbox"] {
    height: 40px;
    width: 40px;
}

#newGame {
    width: 300px;
    height: 200px;
    font-size: 50px;
    line-height: 175px;
}

#newGameButton {
    display: flex;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: center;
    align-items: center;
}

#connectToGame input {
    height: 150px;
    font-size: 60px;
    text-align: center;
}

#connectToGame .btn {
    width: 100%;
    height: 150px;
    font-size: 60px;
}


#playSection .btn, #indexSection .btn {
    line-height: 90px;
    font-size: 50px;
    vertical-align: center;
}

#roleImage img {
    width: 100%;
}
/* HTML: <div class="loader"></div> */
.loader {
    margin: auto;
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0000;
    border-right-color: #ffa50097;
    position: relative;
    animation: l24 1s infinite linear;
}
.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}
.loader:after {
    animation-duration: 4s;
}
@keyframes l24 {
    100% {transform: rotate(1turn)}
}

