/* Fonte padrão */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap'); /* Importa a fonte 'Outfit' do Google Fonts */

/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif; /* Define a fonte padrão como 'Outfit' */
}
/* Personalizando o SweetAlert2 */
.swal2-container .swal2-popup {
    background-color: #333;
    color: #ffffff;
    border-radius: 10px;
}
/* Estilizando o botão de confirmação */
.swal2-popup .swal2-confirm {
    background-color: #a200ff;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}
.swal2-popup .swal2-confirm:hover {
    background-color: #8500cc; /* Cor ao passar o mouse sobre o botão */
}

