/******************************************************************************/
/* Buttons                                                                    */
/******************************************************************************/

button {
  margin-top: 0;
  padding: 8px 14px;
  cursor: pointer;
  border: 1px solid var(--brand);
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
button:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
button:disabled { opacity: 0.55; cursor: not-allowed; }
button:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; }

button.primary {
  background: var(--brand);
  color: #fff;
}

button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
}
button.secondary:hover { background: #f3f4f6; border-color: var(--border); }

button.danger {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}
button.danger:hover { background: var(--danger-dark); border-color: var(--danger-dark); }

.text-btn {
  background: transparent;
  border: none;
  color: var(--brand);
  padding: 2px 4px;
  font-size: 12.5px;
  font-weight: 600;
}
.text-btn:hover { background: var(--brand-verylight); }

/* Full-width row action buttons ("Publish", "Upload logo", ...) —
   solid brand-fill so the primary admin CTA reads as *the* thing to do on
   this tab, distinct from the toolbar's white/bordered browsing controls
   directly above it. */
.action-row-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.action-row-btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
