/* 图片格式转换页补充样式 */

.convert-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.opt-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.opt-label {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.opt-label em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  margin-left: 4px;
}

.check-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.check-inline input {
  accent-color: var(--accent);
}

.format-chips {
  gap: 6px;
}

.format-chip.is-disabled,
.format-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: auto;
}

.format-note {
  margin: 0;
  width: 100%;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.45;
}

.item-convert {
  grid-template-columns: minmax(0, 1fr) auto minmax(100px, 160px) auto;
}

@media (max-width: 720px) {
  .item-convert {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
  }

  .item-convert .status-cell,
  .item-convert .item-actions {
    justify-content: flex-start;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .actions {
    width: 100%;
  }

  .actions .btn {
    flex: 1;
  }
}
