/* EDIT MODAL OVERLAY */
#edit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

/* EDIT MODAL BOX */
#edit-modal {
    background: #fff;
    width: 420px;
    padding: 20px;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CLOSE BUTTON */
#edit-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: red;
    color: white;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
