/* ============================================================
   File: zxBinExtractor.css
   Description: css for ZX81 BIN Extractor (Z80 processor) (BIN only)
   Author: VincentD
   Created: November 26, 2025
   Last Updated: November 27, 2025
   Version: 1.0
   ============================================================ */

/* Toolbar rows */
.bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

/* File input */
input[type="file"] {
  padding: 6px;
}

/* Buttons */
button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  background: #1f6feb;
  color: white;
  border: none;
  border-radius: 6px;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.secondary {
  background: #666;
}

/* Textarea output */
textarea {
  width: 100%;
  height: 420px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: white;
}

/* Status message */
.status {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}






/* ==================== EOF ===================== */