/* ===========================================================
   HASH CALCULATOR STYLES
=========================================================== */
.hc-root .hc-body { gap: 4px; }
.hc-input-pane { flex: 0 0 32%; min-width: 220px; }
.hc-results-pane { flex: 1; min-width: 0; }
.hc-stats {
  font-family: "Courier New", monospace; font-size: 10px;
  color: #cce4ff; font-weight: normal;
}
.hc-results { flex: 1; overflow: auto; background: #ffffff; min-height: 0; }
.hc-row {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 8px; cursor: pointer;
  border-bottom: 1px solid #e8e8e8;
}
.hc-row:hover { background: #ffffe1; }
.hc-row:nth-child(even) { background: #f8f8f8; }
.hc-row:nth-child(even):hover { background: #fffae0; }
.hc-row-label {
  flex: 0 0 110px;
  font-family: Verdana, sans-serif; font-size: 11px;
  color: #404040; font-weight: bold;
}
.hc-row-result { flex: 1; min-width: 0; }
.hc-row-result code {
  font-family: "Courier New", monospace; font-size: 12px;
  color: #000080;
  word-break: break-all; overflow-wrap: anywhere;
  display: inline-block;
}
.hc-compare {
  background: #c0c0c0; border-top: 2px groove #ffffff;
  padding: 6px 10px; display: flex; gap: 12px; align-items: center;
  flex-shrink: 0;
}
.hc-compare input[type=text] {
  flex: 1; border: 2px inset #ffffff; background: #ffffff;
  padding: 3px 6px; font-family: "Courier New", monospace;
  font-size: 12px;
}
.hc-cmp-result {
  font-family: Verdana, sans-serif; font-size: 11px;
  padding: 2px 8px; min-width: 140px;
}
.hc-cmp-result.match { color: #006000; font-weight: bold; }
.hc-cmp-result.no-match { color: #800000; }
