/* =====================================
   Gazolab - Metadata Cleaner CSS
   • Shared styles: /assets/css/tool.css
   • Only write rules starting with .gz-tool-metadata here
===================================== */

.gz-tool-metadata {
  /* Add metadata-specific overrides or tweaks here if needed */
}
/* Metadata */

/* Upload card layout */
.gz-upload-card {
  text-align: center;
}

.gz-upload-header {
  padding-bottom: 0.75rem;
}

/* Divider between drop area and preview */
.gz-upload-divider {
  margin: 0 0 1.25rem;
  border-top: 1px dashed #e3e4e8;
}

/* Preview (centered + size control) */
.gz-preview-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.gz-preview-image {
  display: block;
  margin: 0 auto;
  max-width: min(100%, 520px);
  height: auto;
}

@media (max-width: 600px) {
  .gz-preview-wrapper {
    max-height: 60vh;
  }
  .gz-preview-image {
    max-width: 100%;
    object-fit: contain;
  }
}

/* Metadata list indentation */
.gz-metadata-list {
  margin: 0.5rem 0 .8rem;
  padding-left: 1.4rem;
  list-style-position: outside;
}

/* Desktop-only display */
.gz-desktop-only {
  display: inline-block;
}

@media (max-width: 600px) {
  .gz-desktop-only {
    display: none;
  }
}

/* Fine adjustments for filename / size display (optional) */
/*.meta-data {
  margin-top: 20px;
}*/

/* Force vertical layout only inside metadata options */
.metadata-options .gz-settings-row {
  display: block;          /* Override and disable flex from other tools */
  margin-bottom: 1rem;     /* Normalize spacing between rows */
}

/* Checkbox + text aligned horizontally */
.metadata-options .gz-settings-label-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Description text placed directly below the label */
.metadata-options .gz-settings-help {
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

.gz-result-info {
  display: block;           /* Force onto a new line */
  margin-top: 0.75rem;      /* Spacing from the button */
  font-size: 0.9rem;
  color: #333;
}
