/* Estilos para el pop-up */
.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
}
.popup.show {
    display: block; /* Mostrar cuando se activa */
}
.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
.popup button {
    margin: 5px;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
}
.popup button:hover {
    background-color: #0056b3;
}
.overlay {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.overlay.show {
    display: block; /* Mostrar cuando se activa */
}