/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: 9999; /* Z-index alto para que esté por encima de otros elementos */
}

#popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#popup input[type="text"],
#popup button {
    display: block;
    margin-bottom: 10px;
}

#popup button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#popup button:hover {
    background-color: #0056b3;
}
