
/* assets/css/buttons.css */
.btn{
  display:inline-block;
  padding:8px 12px;
  border-radius:8px;
  font-size:0.95rem;
  font-weight:600;
  text-decoration:none;
  line-height:1.2;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .05s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{ transform:translateY(1px); }
.btn:focus{ outline:2px solid rgba (81, 84, 82, 1); outline-offset:2px; }
.btn.block{ display:block; width:100%; text-align:center; }

.btn-primary   { background:#515452; color:#fff; }
.btn-secondary { background:#515452; color:#fff; }
.btn-success   { background:#1abd4b; color:#fff; }
.btn-warning   { background:#d97706; color:#fff; }
.btn-danger    { background:#dc2626; color:#fff; }
.btn-ghost     { background:transparent; color:#e5e7eb; border-color:#4b5563; }

.btn:hover{ filter:brightness(1.02); }
.btn-primary:hover   { background:#424543; }
.btn-secondary:hover { background:#424543; }
.btn-success:hover   { background:#15803d; }
.btn-warning:hover   { background:#b45309; }
.btn-danger:hover    { background:#b91c1c; }

.actions .btn{ margin-right:6px; }
.actions form{ display:inline-block; margin:0; }
