/* ===== EXIF Tool styles ===== */

/* Drop zone */
.drop-zone {
  border: 2px dashed var(--border-2);
  border-radius: var(--r-lg);
  background: var(--surface-2);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
  margin-bottom: 24px;
}
.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.drop-zone .drop-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}
.drop-zone p {
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
}
.drop-zone .hint {
  font-size: 12.5px;
  color: var(--text-3);
  margin-top: 6px;
}
#fileInput { display: none; }

/* Preview image */
#exifPreview {
  display: none;
  max-width: 100%;
  max-height: 280px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--surface-3);
}

/* File name */
#exifFileName {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
  font-family: var(--mono);
  min-height: 1.4em;
  display: block;
}

/* Results panel */
.exif-results {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  min-height: 64px;
  margin-bottom: 16px;
}

/* Privacy flag badges row */
.exif-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

/* KVS overrides for EXIF table */
.exif-kvs {
  margin-top: 4px;
}

/* None / error message */
.exif-none {
  color: var(--text-3);
  font-size: 14px;
  margin: 0;
}
.exif-error {
  color: var(--danger);
}

/* Download button row */
.exif-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

/* Conv-style card wrapper */
.conv.exif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
}
