.img-tool-wrapper { --p-bg: #ffffff; --p-border: #e2e8f0; --p-primary: #10b981; --p-text: #0f172a; width: 100%; max-width: 800px; margin: 0 auto; background: var(--p-bg); border-radius: 24px; padding: 32px; border: 1px solid var(--p-border); }
.img-header { font-size: 1.5rem; font-weight: 600; color: var(--p-text); margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.img-badge { background: #d1fae5; color: #047857; padding: 4px 12px; border-radius: 30px; font-size: 0.8rem; font-weight: 500; }
.img-subtitle { color: #64748b; font-size: 0.95rem; padding-bottom: 16px; border-bottom: 1px solid var(--p-border); margin-bottom: 24px; }
.img-upload-area { border: 2px dashed #cbd5e1; border-radius: 16px; padding: 40px 20px; text-align: center; cursor: pointer; transition: 0.2s; background: #f8fafc; margin-bottom: 24px; }
.img-upload-area.drag-over { border-color: var(--p-primary); background: #ecfdf5; }

@media(max-width: 768px) { .img-tool-wrapper { padding: 20px; border-radius: 16px; } }

.btn-primary { padding: 12px 24px; background: var(--p-primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; transition: 0.2s; }
.btn-primary:hover { opacity: 0.9; }

.exif-data-box { background: #f1f5f9; border: 1px solid #cbd5e1; border-radius: 12px; padding: 16px; margin-bottom: 24px; text-align: left; max-height: 250px; overflow-y: auto; font-family: monospace; font-size: 0.85rem; color: #334155; }
.exif-data-row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed #cbd5e1; }
.exif-data-row:last-child { border-bottom: none; }

[data-theme="dark"] .img-tool-wrapper { background: #1e293b !important; border-color: #334155 !important; }
[data-theme="dark"] .img-upload-area { background: #0f172a; border-color: #475569; }
[data-theme="dark"] .exif-data-box { background: #0f172a !important; border-color: #475569 !important; color: #cbd5e1 !important; }
[data-theme="dark"] .exif-data-row { border-bottom-color: #334155 !important; }