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

.container {
    text-align: center;
    background-color: #fff;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#relogio {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

.botoes {
    margin-bottom: 20px;
}

.botoes button {
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

#botaoHomem {
    background-color: #0069d9;
}

#botaoHomem:hover {
    background-color: #0053ba;
}

#botaoMulher {
    background-color: #d9006c;
}

#botaoMulher:hover {
    background-color: #ba005c;
}

.contadores {
    margin-bottom: 20px;
}

.contadores p {
    font-size: 20px;
    color: #555;
}

.controle-voz {
    margin-bottom: 20px;
}

.controle-voz label {
    font-size: 18px;
    color: #333;
}

.controle-voz input {
    margin-right: 10px;
}

h2 {
    margin-top: 30px;
    color: #333;
}

#relatorio {
    margin-top: 20px;
    max-height: 200px;
    overflow-y: auto;
    text-align: left;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

#relatorio p {
    margin: 5px 0;
    font-size: 16px;
    color: #444;
}

.acoes {
    margin-top: 20px;
}

.acoes button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 10px;
    transition: background-color 0.3s;
}

.acoes button:hover {
    background-color: #218838;
}

#botaoReset {
    background-color: #dc3545;
}

#botaoReset:hover {
    background-color: #c82333;
}
