/* Cor de fundo da notificação */
.alertify .ajs-message {
    background-color: #0d6efd;
    /* azul bootstrap */
    color: white;
    font-weight: bold;
}

/* Estilo dos botões */
.alertify .ajs-buttons .ajs-ok {
    background-color: #21b36f;
    /* verde */
    color: white;
    border-radius: 5px;
    padding: 5px 15px;
    border: none;
}

.alertify .ajs-buttons .ajs-cancel {
    background-color: #dc3545;
    /* vermelho */
    color: white;
    border-radius: 5px;
    padding: 5px 15px;
    border: none;
}

/* Título (se usar) */
.alertify .ajs-header {
    font-size: 20px;
    font-weight: bold;
    background-color: #0d6efd;
    color: white;
}

/* Estiliza mensagens do tipo 'success' */
.alertify-notifier .ajs-message.ajs-success {
    color: #ffffff;
    /* cor do texto */
    background-color: #29c949;
    /* opcional: muda o fundo também */
    /* font-weight: bold; */
    font-size: 14px;
    border-radius: 5px;
}
.alertify-notifier .ajs-message.ajs-error {
    border-radius: 5px;
    color: #ffffff;
}
    

/* Cor do botão "X" de fechar */
.alertify .ajs-close {
    color: rgb(255, 255, 255) !important;
    /* ou qualquer cor que quiser */
    font-size: 20px;
    /* opcional: aumentar tamanho */
    opacity: 1;
    /* deixar visível */
}