.valconnect-media-dropzone {
    min-height: 230px;
    border: 2px dashed var(--vz-border-color);
    border-radius: .5rem;
    background: var(--vz-secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}

.valconnect-media-dropzone:hover,
.valconnect-media-dropzone.dz-drag-hover {
    border-color: var(--vz-primary);
    background: rgba(var(--vz-primary-rgb), .05);
}

.valconnect-media-dropzone .dz-message {
    margin: 0;
    padding: 2rem;
    text-align: center;
}

.valconnect-media-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem;
    margin-top: .75rem;
    border: 1px solid var(--vz-border-color);
    border-radius: .5rem;
    background: var(--vz-body-bg);
}

.valconnect-media-preview-thumb {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    object-fit: cover;
    border-radius: .4rem;
    background: var(--vz-light);
}

.valconnect-media-crop-container {
    width: 100%;
    min-height: 420px;
    max-height: 68vh;
    overflow: hidden;
    border-radius: .5rem;
    background: #111;
}

.valconnect-media-crop-container img {
    display: block;
    max-width: 100%;
}

.valconnect-media-crop-preview {
    width: 240px;
    height: 150px;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid var(--vz-border-color);
    border-radius: .5rem;
    background: var(--vz-light);
}

.valconnect-media-crop-preview.is-rounded {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

#valconnectMediaProgressBar {
    min-width: 2rem;
}
