/* Form Element Styles */
label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1728;
  color: var(--text);
  padding: 8px;
  font-size: 0.9rem;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 168, 255, 0.15);
}
textarea { min-height: 70px; resize: vertical; }
button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand);
  color: #061020;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
  transition: opacity 0.15s, box-shadow 0.15s;
}
button:hover { opacity: 0.9; }
button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 168, 255, 0.4);
}
button:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- Button Variants --- */
.btn-danger {
  background: var(--bad);
  color: var(--text);
  border-color: var(--bad);
}
.btn-danger:hover { opacity: 0.85; }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: var(--muted); }
.btn-sm {
  padding: 4px 12px;
  font-size: 0.8rem;
}
.btn-inline { width: auto; }
