.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 1000;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px; /* Aumenta el tamaño de la "X" */
    color: #fff; /* Cambia el color si es necesario */
    background-color: #ff4d4d; /* Agrega un fondo para resaltar el botón */
    border: none;
    border-radius: 50%;
    width: 40px; /* Ancho del botón */
    height: 40px; /* Altura del botón */
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Sombra para mayor visibilidad */
}

.close:hover {
    background-color: #ff1a1a; /* Color al pasar el mouse */
}