/* Ensure native buttons get a consistent, visible style when no specific class is present.
   This fixes secret dropdown and other buttons that were showing browser default styling. */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #e0e0e0;
  color: #000;
  border: 1px solid #999;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  box-shadow: none;
}
button:hover { background: #d0d0d0; }
button:active { transform: translateY(1px); }