/* Light, minimal styling */
.wsb64 {
  background: #fff;
  color: #000;
  padding: 0;
  border: none;
  max-width: 1000px;
}

.wsb64 .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px){.wsb64 .row{grid-template-columns:1fr}}

.wsb64 .label {
  font-size: 13px;
  color: #333;
  margin: 0 0 6px;
}

.wsb64 .ta {
  width: 100%;
  min-height: 220px;
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.wsb64 .controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.wsb64 .btn {
  appearance: none;
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #000;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.wsb64 .btn:hover { background: #eee; }

.wsb64 .btn-primary {
  background: #0073aa;
  border-color: #0073aa;
  color: #fff;
}
.wsb64 .btn-primary:hover { background: #006799; }

.wsb64 .small {
  font-size: 12px;
  color: #666;
}

.wsb64 .switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.wsb64 .input {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
}
