body {
    background-color: #e4e4e4;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.container {
    text-align: center;
    background-color: #4f352f;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 350px;
}
.historico {
    width: 50vw;
}
.historico p, .historico p b {
    color: #fff;
    font-size: 14px;
}

.range-inputs {
    display: flex;
    justify-content: space-between;
}

.range-inputs div {
    width: 48%;
}

.config label {
    color: #e4e4e4;
    display: block;
    margin: 10px 0 5px;
}

.config input {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #b61e1e;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    background-color: #b61e1e;
    color: #e4e4e4;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background-color: #a51b1b;
}

.result {
    margin-top: 20px;
    color: #e4e4e4;
}

#messages {
    margin-top: 10px;
    margin-bottom: 20px;
}

#sorteio {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.number-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #4f352f;
    font-weight: bold;
    margin: 0px 5px;
}



h1 {
    color: #e4e4e4;
    margin: 20px 0;
    font-size: 18px;
}

.number-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#historico {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    color: #4f352f;
    margin-bottom: 20px;
    height: 200px;
    overflow-y: auto;
}

canvas {
    background-color: #ffffff;
    border-radius: 5px;
}

.login label {
    width: 100%;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #fff;
}
.login input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    padding: 10px 5px;
    border: none 0px;
    border-radius: 5px;
}