#artistflow-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,.85);

    display: none;

    justify-content: center;
    align-items: center;

    overflow: auto;
}

#artistflow-modal.artistflow-open {
    display: flex;
}

.artistflow-modal-content {
    background: #fff;
    border-radius: 10px;

    width: min(90vw, 900px);
    max-height: 90vh;

    display: flex;
    flex-direction: column;

    padding: 20px;
}

#artistflow-crop-image {
    display: block;

    max-width: 100%;
    max-height: 70vh;
}

.artistflow-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;

    margin-top: 20px;
}

.artistflow-buttons button {
    padding: 10px 20px;
    cursor: pointer;
}

.artistflow-edit{
    position:absolute;
    left:8px;
    bottom:8px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#000c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:20;
    text-decoration:none;
}

.uploaded-file-preview{
    position:relative;
}
