* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: #007bff;
}

#stopwatch {
    display: flex;
    flex-direction: column; /* Garante que todos os elementos dentro de #stopwatch fiquem em colunas */
    background-color: #262626;
    padding: 2rem;
    border-radius: 8px;
    align-items: center; /* Centraliza o conteúdo dentro de #stopwatch */
}

#actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center; /* Centraliza os botões */
    width: 100%; /* Garante que os botões ocupem toda a largura */
}

#marks-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    color: #ffffff;
    align-items: center; /* Centraliza o conteúdo */
    text-align: center; /* Centraliza o texto */
    margin-top: 20px; /* Espaçamento entre a div actions e a lista de marcas */
    width: 100%; /* Garante que a lista ocupe toda a largura */
}




#timer  {
    background-color: #262626;
    height: 250px;
    width: 250px;
    border: 3px solid #007bff;
    margin-bottom: 1.5rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 30px;
    color: #ffffff;
    padding: 4rem;
}




#actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: .6rem;
    font-size: 1rem;
    border-radius: 4px;
    border: none;
    color: #262626;
    background-color: #e0e7ff;
    transition: background-color .2s ease-in;
    cursor: pointer; 
}

#actions button#pause-show {
    background-color: #ffc107; /* Cor diferente para o novo botão */
}

#actions button#pause-show:hover {
    background-color: #e0a800;
}


#actions button:hover {
    background-color: #c4b5fd;
}



#marks-list p:first-child {
    margin-top: 1.5rem;
} 
