
#gei-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#gei-modal.gei-hidden {
    display: none;
}

.gei-modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.gei-modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.gei-modal-content button {
    margin: 5px;
    padding: 10px 20px;
    background: #ce1919;
    color: white;
    border: none;
    cursor: pointer;
}
