/* Estilos dos botões */

.button-padrao {
    background-color: #101820;
    color: #fff;
    border: none;
    padding: 10px 20px 10px 20px;
    margin: 5px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    min-width: fit-content;
    max-width: none;
    width: auto;

}

.button-padrao:hover {
    color: yellow;
    /*font-weight: bolder;*/
}



.button-red {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px 10px 20px;
    margin: 5px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    min-width: fit-content;
    max-width: none;
    width: auto;
}

.button-red:hover {
    background-color: darkred;
}


.button-green {
    background-color: green;
    color: white;
    border: none;
    padding: 10px 20px 10px 20px;
    margin: 5px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    min-width: fit-content;
    max-width: none;
    width: auto;
}

.button-green:hover {
    background-color: rgb(1, 156, 1);
}