/* Estilos globais para a página */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
   background-color: #007ced;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo da caixa principal */
.box {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background-color: #e0e5ec;
   /* box-shadow: 10px 10px 20px #babecc, -10px -10px 20px #ffffff;*/
    animation: fadeIn 1s ease-in-out;
    width: 350px;
}

/* Animação de fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Exibição do cronômetro */
#timer {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #007ced;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo dos botões */
.btn-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 10px #babecc, -5px -5px 10px #ffffff;
    flex-grow: 1;
}

/* Estilo das cores dos botões */
.btn-success {
    background-color: #28a745;
}

.btn-warning {
    background-color: #ffc107;
}

.btn-default {
    background-color: #6c757d;
}

.btn-info {
    background-color: #17a2b8;
}

/* Estilo quando os botões são clicados */
.btn:active {
    transform: scale(0.95);
    box-shadow: inset 5px 5px 10px #babecc, inset -5px -5px 10px #ffffff;
}

/* Lista de voltas */
.laps {
    margin-top: 25px;
    padding: 0;
    list-style: none;
    font-size: 1.1em;
}

.laps li {
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    color: #333;
    text-align: left;
}
