.profile-photo-preview {
    width: min(100%, 320px);
    aspect-ratio: 1;
    object-fit: cover;
}

.profile-photo-crop-stage {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: .5rem;
    background: #111;
    border-radius: 1rem;
}

.profile-photo-crop-canvas {
    display: block;
    width: 100%;
    height: auto;
    background: #111;
    cursor: grab;
    touch-action: none;
    border-radius: 50%;
    user-select: none;
    -webkit-user-select: none;
}

.profile-photo-crop-canvas:active {
    cursor: grabbing;
}

.profile-photo-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

@media (max-width: 575.98px) {
    #profilePhotoCropModal .modal-dialog {
        margin: 0;
        max-width: none;
        height: 100%;
    }

    #profilePhotoCropModal .modal-content {
        min-height: 100%;
        border: 0;
        border-radius: 0;
    }

    #profilePhotoCropModal .modal-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #profilePhotoCropModal .modal-footer {
        position: sticky;
        bottom: 0;
        background: var(--bs-body-bg);
    }
}
