/* =========================================================
   VERIFY CSS SYSTEM
   Datei: /assets/css/components/buttons.css

   INHALT
   01) Basisbutton
   02) Primary Button
   03) Secondary / Inline Button
   04) Disabled State

   HINWEIS
   Diese Datei enthält nur das generelle Button-System.
   Keine Admin-Spezialbuttons, keine Tabellenaktionen, keine Filterlogik.
   ========================================================= */


/* =========================================================
   01) BASISBUTTON
   Grundstruktur für alle allgemeinen Buttons im Verify-System
   Austauschbar, wenn Form, Padding oder Hover-Grundverhalten geändert wird
   ========================================================= */

.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  font-weight:700;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    color .2s ease;
  will-change:transform;
}

.btn:hover{
  transform:translateY(-2px);
}


/* =========================================================
   02) PRIMARY BUTTON
   Goldene Hauptaktion
   Austauschbar, wenn Haupt-CTA-Look geändert werden soll
   ========================================================= */

.btn-primary{
  color:#07111f;
  background:linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color:rgba(255,230,160,.75);
  box-shadow:
    0 10px 30px rgba(255,191,58,.25),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-primary:hover{
  box-shadow:
    0 16px 40px rgba(255,191,58,.32),
    inset 0 1px 0 rgba(255,255,255,.55);
}


/* =========================================================
   03) SECONDARY / INLINE BUTTON
   Sekundäre Glasbuttons und kompakter Inline-Button
   Austauschbar, wenn die Nebenaktionen optisch geändert werden sollen
   ========================================================= */

.btn-secondary,
.btn-inline{
  color:var(--text);
  background:rgba(255,255,255,.08);
  border-color:var(--line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14);
}

.btn-secondary:hover,
.btn-inline:hover{
  border-color:rgba(126,243,255,.35);
  background:rgba(255,255,255,.12);
}

.btn-inline{
  min-height:42px;
  padding:10px 16px;
  font-size:.95rem;
}


/* =========================================================
   04) DISABLED STATE
   Allgemeiner deaktivierter Zustand
   Austauschbar, wenn disabled Buttons später klarer markiert werden sollen
   ========================================================= */

.btn.is-disabled{
  opacity:.6;
  cursor:not-allowed;
}
