/* Estilo geral dos botões */
.button {
    background-color: #007bff; /* Azul */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

/* Estilo de hover */
.button:hover {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
}

/* Estilo de botões com cor alternativa */
.button.alt {
    background-color: #28a745; /* Verde */
    border: none;
    color: white;
}

.button.alt:hover {
    background-color: white;
    color: #28a745;
    border: 2px solid #28a745;
}

/* Estilo de botões com cor de alerta */
.button.alert {
    background-color: #dc3545; /* Vermelho */
    border: none;
    color: white;
}

.button.alert:hover {
    background-color: white;
    color: #dc3545;
    border: 2px solid #dc3545;
}

/* Botões com bordas arredondadas */
.button.round {
    border-radius: 50px;
}

/* Botões grandes */
.button.large {
    font-size: 18px;
    padding: 15px 30px;
}

/* Botões pequenos */
.button.small {
    font-size: 12px;
    padding: 5px 10px;
}
