.compress-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.selected-file {
  margin-top: 8px;
  background: #ffffff;
  border: 1px solid #dbe3f3;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.selected-file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #334155;
  font-size: 14px;
}

.selected-file-remove {
  width: 28px;
  height: 28px;
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b91c1c;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.selected-file-remove svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.setting-subnote {
  margin: -2px 0 8px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.single-option-stack.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  background: #f8fbff;
  border: 1px solid #dbe7ff;
  border-radius: 12px;
  padding: 10px 12px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.stat-card strong {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.result-box {
  background: #ffffff;
  border: 1px solid #dbe3f3;
  border-radius: 14px;
  padding: 14px;
  color: #334155;
  line-height: 1.55;
  white-space: pre-line;
}

@media (max-width: 900px) {
  .compress-stats {
    grid-template-columns: 1fr;
  }

  .single-option-stack.two-col,
  .single-option-stack {
    grid-template-columns: 1fr;
  }
}
