/* Estilo do input file padrão oculto */
			.input-file-wrapper { margin-bottom: 20px; text-align: center; }
			input[type="file"] { display: none; }
			.custom-file-upload { border: 2px dashed var(--border-color); display: block; padding: 30px; cursor: pointer; border-radius: 8px; background: #fafafa; transition: all 0.2s; }
			.custom-file-upload:hover { border-color: var(--primary-color); background: #eff6ff; }
			.custom-file-upload span { color: var(--text-muted); font-size: 0.9rem; }

			.editor-container { display: none; }
			
			.img-wrapper { max-height: 500px; width: 100%; background: #000; border-radius: 8px; overflow: hidden; display: flex; justify-content: center; align-items: center; margin-bottom: 15px; }
			img { max-width: 100%; display: block; }

			.action-btn { width: 100%; background-color: var(--primary-color); color: white; border: none; border-radius: 8px; padding: 14px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background-color 0.2s; margin-top: 10px; }
			.action-btn:hover { background-color: var(--primary-hover); }

			#resultContainer { margin-top: 25px; display: none; text-align: center; border-top: 2px solid #f1f5f9; padding-top: 20px; }
			#resultContainer h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-main); }
			#croppedImage { max-width: 100%; border: 2px solid var(--border-color); border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
			
			.download-btn { display: inline-block; margin-top: 15px; background-color: #16a34a; color: white; text-decoration: none; padding: 12px 24px; border-radius: 8px; font-weight: 600; transition: background-color 0.2s; }
			.download-btn:hover { background-color: #15803d; }