/* Tool-specific: GZIP Decompressor */

#text-decompression #output {
  font-family: monospace;
  word-break: break-all;
}

.compression-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-top: var(--space-3);
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.compression-stats__label {
  color: var(--color-text-muted);
}

.compression-stats__value {
  color: var(--color-primary-strong);
  font-weight: 600;
}

.compression-stats__sep {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.panel--note {
  border-left: 3px solid var(--color-primary);
  background: var(--color-surface-subtle);
}

.file-dropzone {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  background-color: var(--color-surface-subtle);
  color: var(--color-text-muted);
  cursor: pointer;
  margin-bottom: 16px;
  position: relative;
  transition: all 0.2s;
}

.file-dropzone:hover {
  border-color: var(--color-primary);
  background-color: var(--color-surface-muted);
  color: var(--color-primary-strong);
}

.file-dropzone .file-dropzone-text {
  display: inline-block;
}

.file-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
