.imageEditor {
    border-radius: 12px;
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.imageEditor.dragging {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
}

.imageEditorIcon {
    margin-bottom: 12px;
}

.imageEditorText {
    font-weight: 400;
    text-align: center;
    color: #232323;
    margin-bottom: 10px;
}

.imageEditorRequirements {
    font-size: 14px;
    color: #9aa1aa;
    text-align: center;
}

.imagePreview {
    margin-top: 20px;
    max-width: 100%;
    text-align: center;
}

.imagePreview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.imagePreview.uploading img {
    opacity: 0.5;
}

.descriptionContainer {
    margin-top: 16px;
    width: 100%;
} 