/* Agregar o actualizar estos estilos en style.css */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.btn-cancelar {
    background-color: #e74c3c;
    color: white;
}

.btn-cancelar:hover {
    background-color: #c0392b;
}