/* Button Styles */

button {
  font-family: inherit;
  margin: 0;
}

/* Base button — sentence-case sans; one primary style (accent) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: normal;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-top: 8px;
}

/* Compact button variant for home.html dashboard */
.btn--compact {
  padding: 8px 14px;
  font-size: 13px;
  margin-top: 0;
  line-height: 1.5;
  white-space: nowrap;
  vertical-align: middle;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
}

/* Button style used in login.html and setup.html */
a.button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: normal;
  transition: all 0.15s ease;
}

a.button:hover,
.button:hover {
  background: var(--accent-hover);
}
