.custom-alert {
    color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ec0c0c;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    border-radius: 5%;
}

/* Estilo para o botão de fechar */
.custom-alert button {
    background-color: #ffffff;
    color: #000000;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5%;
}