body {
    background-color: #131314;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

#footer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #424242;
    font-size: 14px;
}

#box {
    padding: 20px;
    border-radius: 15px;
    background-color: #1e1f20;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 20vw;
    margin: 40px;
}

#box p, #box h1 {
    margin: 0;
    padding: 0;
}

input, input:-webkit-autofill {
    padding: 10px;
    border-radius: 5px;
    border: 0;
    margin-top: 10px;
    background-color: #292a2c;
    color: white;
    outline: none;
    width: 60%;
    transition: background-color 0s 10000000000000000000000000000000000s, color 0s 10000000000000000000000000000000000s !important;
}

button {
    padding: 10px;
    border-radius: 5px;
    border: 0;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button:active {
    background-color: #004085;
}

#status {
    margin-top: 10px;
    font-size: 14px;
    color: #ff5151;
    padding: 15px;
    background-color: rgba(255, 81, 81, 0.2);
    border-radius: 5px;
    border: 1px solid rgba(255, 81, 81, 0.7);
}

#player-avatar {
    border-radius: 1px;
}

.range {
    margin: 0;
    padding: 0;
}

hr {
    border: 0;
    height: 1px;
    background-color: #424242;
    margin: 20px 0;
}

button:disabled {
    background-color: #004085;
    cursor: not-allowed;
    opacity: 0.6;
    transition-duration: 1s;
}