/* Estilo de la alerta */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f44336; /* Rojo para el mensaje de error */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.alert-error {
    background-color: #f44336; /* Rojo para el error */
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding-left: 15px;
    line-height: 0;
}

.close-btn:hover {
    opacity: 0.8;
}
