/* =============================================================
   umbau/css/global.css
   Vamily – Globales Design-System
   =============================================================
   Inhalt:
     1. CSS-Variablen (Design Tokens)
     2. Reset & Box-Model
     3. Typographie & Body
     4. Layout: App-Header
     5. Layout: Dropdown-Menü
     6. Layout: Bottom-Navigation
     7. Layout: Content & View-Transitions
     8. Komponente: Cards & Sections
     9. Komponente: Formulare & Inputs
    10. Komponente: Buttons (Global)
    11. Komponente: Modals & Overlays
    12. Komponente: Log-Listen
    13. Utilities & Helfer
    14. Animationen
   ============================================================= */


/* ─────────────────────────────────────────────────────────────
   1. CSS-VARIABLEN (Design Tokens)
   Alle Vereinsfarben und Designwerte HIER zentral anpassen.
   ───────────────────────────────────────────────────────────── */
:root {
    /* ── Hintergrundfarben ── */
    --bg-dark:       #0f172a;  /* Haupt-Hintergrund (tiefstes Blau-Schwarz) */
    --bg-card:       #1e293b;  /* Karten-Hintergrund */
    --bg-card-hover: #334155;  /* Karten-Hover-Zustand */
    --bg-input:      #0f172a;  /* Eingabefelder */

    /* ── Vereinsfarbe: Primär (Tennis-Neon-Grün) ── */
    --primary:       #bef264;  /* Hauptakzentfarbe – z.B. für Buttons, Highlights */
    --primary-muted: rgba(190, 242, 100, 0.15); /* Primärfarbe als transparenter Hintergrund */
    --primary-dark:  #84cc16;  /* Dunklere Variante für Hover-Effekte */

    /* ── Textfarben ── */
    --text-main:     #f8fafc;  /* Primärer Text (fast weiß) */
    --text-muted:    #94a3b8;  /* Sekundärer Text, Labels, Beschreibungen */

    /* ── Rahmen ── */
    --border:        rgba(255, 255, 255, 0.10); /* Standard-Rahmen */
    --border-bright: rgba(255, 255, 255, 0.20); /* Betonter Rahmen */

    /* ── Effekte ── */
    --glass:         blur(20px);                        /* Glassmorphism-Blur */
    --shadow:        0 10px 25px -5px rgba(0, 0, 0, 0.5); /* Standard-Schatten */

    /* ── Status-Farben ── */
    --danger:        #f87171;  /* Fehler, Löschen, Niederlage */
    --color-sieg:    var(--primary);
    --color-niederlage: var(--danger);
    --color-unentschieden: #f59e0b;

    /* ── Legacy-Aliases (Kompatibilität mit bestehendem JS) ── */
    --bg-main:       var(--bg-dark);
    --primary-glow:  var(--primary-muted);

    /* ── Gerätespezifisch ── */
    --safe-bottom:       env(safe-area-inset-bottom, 0px);
    --bottom-nav-height: calc(75px + var(--safe-bottom));
}


/* ─────────────────────────────────────────────────────────────
   2. RESET & BOX-MODEL
   ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Kein blaues Tap-Highlight auf Mobile */
}


/* ─────────────────────────────────────────────────────────────
   3. TYPOGRAPHIE & BODY
   ───────────────────────────────────────────────────────────── */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    padding-bottom: calc(var(--bottom-nav-height) + 10px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Dezent rotierter Vereins-Bierdeckel im Hintergrund */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vmin;
    height: 85vmin;
    background-image: url('../bierdeckel.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.035;
    z-index: -1;
    pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   4. LAYOUT: APP-HEADER
   Sticky Header mit Glassmorphism-Effekt
   ───────────────────────────────────────────────────────────── */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border);
}

.header-logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.header-logo h1 span {
    color: var(--primary);
}

/* Rechte Seite: Kontostand + Avatar-Pill */
.header-user-status {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 6px 6px 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-bright);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s ease;
}

.header-user-status:hover {
    background: var(--bg-card-hover);
}

.balance-badge {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums; /* Verhindert Jitter bei wechselnden Zahlen */
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar span {
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.8rem;
}


/* ─────────────────────────────────────────────────────────────
   5. LAYOUT: DROPDOWN-MENÜ
   ───────────────────────────────────────────────────────────── */
.dropdown-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.dropdown-menu.active {
    display: flex;
}

.dropdown-header {
    padding: 12px;
}

.dropdown-header strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.dropdown-header span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
}

.dropdown-item.logout {
    color: var(--danger);
}


/* ─────────────────────────────────────────────────────────────
   6. LAYOUT: BOTTOM-NAVIGATION
   ───────────────────────────────────────────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    padding: 12px 0 calc(16px + var(--safe-bottom));
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    gap: 4px;
    width: 20%;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item span {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


/* ─────────────────────────────────────────────────────────────
   7. LAYOUT: CONTENT & VIEW-TRANSITIONS
   ───────────────────────────────────────────────────────────── */
main {
    flex: 1;
    padding: 0 16px;
}

/* Einzelne Ansichts-Bereiche (Dashboard, Bierdeckel, etc.) */
.view-section {
    display: none;
    animation: fadeIn 0.3s ease-out forwards;
}

.view-section.active {
    display: block;
}


/* ─────────────────────────────────────────────────────────────
   8. KOMPONENTE: CARDS & SECTIONS
   ───────────────────────────────────────────────────────────── */
.card-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card-section h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.card-section h2 svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Settings-ähnliche Sections mit gleichem Aussehen */
.settings-section {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.settings-section h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}


/* ─────────────────────────────────────────────────────────────
   9. KOMPONENTE: FORMULARE & INPUTS
   ───────────────────────────────────────────────────────────── */
.input-field {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-muted);
}

.input-field::placeholder {
    color: var(--text-muted);
}

/* iOS-Style Toggle-Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 34px;
    border: 1px solid var(--border-bright);
}

.slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

input:checked + .slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked + .slider::before {
    transform: translateX(20px);
    background-color: var(--bg-dark);
}

/* Switch-Zeile (Label + Toggle) */
.switch-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-bright);
}

.switch-row:last-child {
    border-bottom: none;
}

.switch-label {
    display: flex;
    flex-direction: column;
}

.switch-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.switch-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Selectable Toggle-Button-Gruppe (Mehrfachauswahl) */
.toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.btn-toggle {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--border-bright);
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-toggle:active {
    transform: scale(0.95);
}

.btn-toggle.active {
    background: var(--primary-muted);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-muted);
}


/* ─────────────────────────────────────────────────────────────
   10. KOMPONENTE: BUTTONS (Global)
   ───────────────────────────────────────────────────────────── */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 14px;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-muted);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px var(--primary-muted);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-delete {
    background: var(--danger);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: opacity 0.2s;
}

.btn-delete:hover {
    opacity: 0.85;
}

/* Mini-Lösch-Button (positioniert innerhalb einer Karte) */
.btn-delete-mini {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.15s ease;
}

.btn-delete-mini:hover {
    background: var(--danger);
    color: white;
}

/* Filter-Tags (z.B. für Mitglieder-Liste) */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.btn-tag {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-tag.active {
    background: var(--primary-muted);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-muted);
}


/* ─────────────────────────────────────────────────────────────
   11. KOMPONENTE: MODALS & OVERLAYS
   ───────────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 9, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn 0.2s ease-out;
}

.modal-content {
    width: 100%;
    max-width: 450px;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
}

.btn-close-modal:hover {
    color: var(--text-main);
}

.player-info-card {
    background: var(--bg-dark);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.info-row .value {
    font-weight: 700;
    color: var(--text-main);
}

.info-row .value.highlight {
    color: var(--primary);
}

.history-section h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.mini-history-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.mini-history-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.mini-history-item .winner {
    color: var(--primary);
    font-weight: 700;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}


/* ─────────────────────────────────────────────────────────────
   12. KOMPONENTE: LOG-LISTEN
   Allgemeine Listen für Getränke-Logs, Ergebnis-Historien etc.
   ───────────────────────────────────────────────────────────── */
.log-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.log-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.log-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.log-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.log-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.log-preis {
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
    font-size: 1rem;
}


/* ─────────────────────────────────────────────────────────────
   13. UTILITIES & HELFER
   ───────────────────────────────────────────────────────────── */

/* Leerer Zustand (keine Daten verfügbar) */
.empty-state {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    border: 1.5px dashed var(--border);
    border-radius: 20px;
    width: 100%;
}

/* Zahlen mit fester Breite (verhindert Layout-Jitter bei dynamischen Werten) */
.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* Sub-Navigation (z.B. Tabs innerhalb einer View) */
.sub-nav-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.sub-nav-btn {
    flex: 1;
    padding: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.sub-nav-btn.active {
    background: var(--primary-muted);
    border-color: var(--primary);
    color: var(--primary);
}


/* ─────────────────────────────────────────────────────────────
   14. ANIMATIONEN
   ───────────────────────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* BIERDECKEL CSS */
.getraenke-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-drink { background: var(--bg-card); border: 1px solid var(--border-bright); border-radius: 20px; padding: 24px 12px; display: flex; flex-direction: column; align-items: center; position: relative; cursor: pointer; transition: all 0.2s; box-shadow: var(--shadow); width: 100%; }
.btn-drink:active { transform: scale(0.96); border-color: var(--primary); }
.drink-name { font-weight: 700; font-size: 0.95rem; text-align: center; color: var(--text-main); }
.drink-price { color: var(--primary); font-weight: 800; margin-top: 6px; font-size: 0.85rem; }

/* -------------------------------------------------------------
   15. BIERDECKEL KONTROLLEN (Plus/Minus)
   ------------------------------------------------------------- */
.drink-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
}
.drink-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.drink-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}
.drink-price {
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}
.drink-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--border);
}
.btn-ctrl {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-ctrl:active {
    transform: scale(0.9);
}
.btn-ctrl.btn-plus {
    color: var(--primary);
    border-color: rgba(190, 242, 100, 0.3);
}
.btn-ctrl.btn-minus {
    color: var(--danger);
    border-color: rgba(248, 113, 113, 0.3);
}
.drink-counter {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-main);
    width: 40px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}


/* -------------------------------------------------------------
   15. KOMPONENTE: SCOREBOARD (Ergebnisse)
   ------------------------------------------------------------- */
.scoreboard-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
}

.scoreboard-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.score-players-sets {
    flex-grow: 1;
    display: grid;
    grid-template-columns: max-content max-content;
    row-gap: 8px;
    column-gap: 24px;
    align-items: center;
}

.score-row {
    display: contents; /* Erlaubt perfektes Grid-Alignment über Zeilen hinweg */
}

.score-name {
    font-size: 0.95rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.score-row.winner .score-name {
    color: var(--text-main);
    font-weight: 700;
}

.score-sets {
    display: flex;
    gap: 12px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: var(--text-muted);
}



.score-sets span {
    min-width: 20px;
    text-align: center;
}

.score-sets span.set-winner {
    color: var(--text-main);
    font-weight: 800;
}

.score-event {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 0 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Passwort-Wrapper & Show/Hide Auge */
.password-wrapper {
    position: relative;
    width: 100%;
}
.password-wrapper .input-field {
    padding-right: 40px;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-muted);
    opacity: 0.7;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
}
.password-toggle:hover {
    opacity: 1;
    color: var(--text-light);
}

