@import url('../pdf-tools-design.css');

/* ===== Image Converter — tool specific overrides ===== */

.ic-field-group { margin-top: 14px; }

.ic-field-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ic-field-group label span.ic-val { color: var(--primary); font-weight: 800; }

.ic-color-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ic-color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 2px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, transform 0.15s;
}

.ic-color-swatch.active {
  border-color: var(--text-dark);
  transform: scale(1.1);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}