.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.alert-message {
    color: #ff0000;
    font-size: 16px;
}

/* Agrega estilos para el botón de cerrar (si lo estás usando) */
.close {
    float: right;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}
