/* 03-diverses.css — Teil der Aufteilung von style.css (2026-08-10).
   Urspruenglich Zeilen 2455-2870 der einen Datei. Kleinere durchgehende Abschnitte.
   Diese und alle anderen css/*.css-Dateien werden auf JEDER Seite
   gemeinsam geladen, in fester Reihenfolge - die Kaskade ist exakt
   dieselbe wie vorher, nur auf mehrere Dateien verteilt. */

/* =========================
   Login-Page (index.html)
   ========================= */

.login-page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    background: var(--darker-background);
}

.login-card {
    width: min(100%, 420px);
    background: var(--background-color);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--tigers-yellow);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.login-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-title {
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    color: var(--tigers-black);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    line-height: 1.3;
}

.login-title span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-placeholder);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.login-tagline {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-placeholder);
    margin: 0 0 28px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.login-forgot {
    width: 100%;
    text-align: right;
    margin-top: -6px;
}
.login-forgot a {
    font-size: 0.82rem;
    color: var(--text-placeholder);
    text-decoration: none;
}
.login-forgot a:hover {
    color: var(--tigers-yellow-text);
    text-decoration: underline;
}

.reset-hint {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-placeholder);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
}
.reset-erfolg {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.reset-erfolg-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

/* Input mit Icon links */
.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-placeholder);
    font-size: 0.95rem;
    pointer-events: none;
}

.input-icon i {
    color: var(--text-placeholder);
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 42px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-small);
    background: var(--bg-flaeche);
    color: var(--text-input);
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: var(--tigers-yellow);
    box-shadow: 0 0 0 3px rgba(253,238,23,0.25);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tigers-yellow) 25%, transparent);
}

/* Login-Button */
.btn-login {
    width: 100%;
    height: 48px;
    background: #111111;
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
    border: none;
    border-radius: var(--radius-small);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.15s ease, transform 0.12s ease;
    margin-top: 4px;
}

.btn-login i {
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
    font-size: 1rem;
}

.btn-login:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Divider */
.login-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-placeholder);
    font-size: 0.82rem;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* Registrieren-Button */
.btn-register {
    width: 100%;
    height: 44px;
    background: transparent;
    color: var(--tigers-black);
    border: 2px solid var(--tigers-yellow);
    border-radius: var(--radius-small);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    transition: background 0.15s ease, color 0.15s ease;
}

.btn-register i {
    color: var(--tigers-black);
    font-size: 0.95rem;
}

.btn-register:hover {
    background: var(--tigers-yellow);
    color: var(--tigers-black);
}

/* =========================
   Hilfsklassen
   ========================= */
.w-full      { width: 100%; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.font-bold   { font-weight: bold; }
.form-inline { display: inline; }

/* =========================
   Fehler / Alerts
   ========================= */
.text-error { color: var(--danger-red); }

/* =========================
   Auswertungs-Tabellen (Filter-Formular)
   ========================= */
/* Tabelle für Filter-Formulare (Name / Jahr / Monat / Aktionen) */
.filter-form-table {
    width: 100%;
    margin-bottom: 0.5rem;
    border-collapse: collapse;
}
.filter-form-table th:nth-child(1) { width: 40%; text-align: left; }
.filter-form-table th:nth-child(2) { width: 20%; text-align: left; }
.filter-form-table th:nth-child(3) { width: 20%; text-align: left; }
.filter-form-table th:nth-child(4) { width: 20%; text-align: left; }
.filter-form-table td              { padding: 4px; }

/* Sticky Gesamt-Spalte rechts in Auswertungs-Matrizen */
.sticky-amount {
    min-width: 100px;
    z-index: 30;
    position: sticky;
    right: 0;
    background: var(--bg-table-header);
}

/* Zeile "Keine Daten" in Auswertungs-Tabellen */
.no-data-row td {
    text-align: center;
    padding: 20px;
}

/* =========================
   Saison-Auswahl-Liste
   ========================= */
.season-scroll { width: 100%; min-width: 180px; }
.season-scroll option { padding: 4px 6px; }

/* =========================
   Hybrid: Home im Glass-Look (1A)
   Nur .page-home betroffen – Datenseiten bleiben helle Karten.
   Werte 1:1 an mockup-1a-glass-nature.html angeglichen.
   ========================= */

/* Wrapper transparent: Glass-Panels sitzen direkt auf der Stage */
.page-home .content {
    background: transparent;
    border: none;
    box-shadow: none;
    width: min(94%, 1180px);
    padding: 0;
    margin: 24px auto 40px;
}

.page-home .content h1,
.page-home .content h2 {
    color: rgb(var(--ink));
    border: none !important;
}

/* Hero als kräftiges Glass-Panel (wie .glass in 1A) */
.page-home .home-hero {
    background: rgba(var(--ink) / 0.14) !important;
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border: 1px solid rgba(var(--ink) / 0.28) !important;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(15,15,15,0.28);
}

.page-home .hero-text h2 {
    color: rgb(var(--ink));
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}

.page-home .hero-text .hero-date,
.page-home .hero-text .hero-date i {
    color: rgba(var(--ink) / 0.85);
}

/* Abschnitte selbst transparent (Basis-Regel .content > div macht sie sonst hellgrau) */
.page-home .home-section {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Abschnittstitel: gelber Balken + weiße Großbuchstaben (wie .sec-head) */
.page-home .home-section-title {
    color: rgb(var(--ink));
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 800;
    padding-left: 14px;
    border-left: 6px solid var(--tigers-yellow);
}

.page-home .home-section-title i {
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
}

/* Info / Doc als kräftige Glass-Karten.
   News und Changelog stehen seit 2026-09-04 als .ha-zeile in
   04-home-nav-profil.css – ihre Home-Regeln sind hier entfallen. */
.page-home .info-box,
.page-home .doc-item {
    background: rgba(var(--ink) / 0.14) !important;
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(var(--ink) / 0.24) !important;
    box-shadow: 0 12px 36px rgba(15,15,15,0.25);
}

/* Alle Texte auf Glass kräftig weiß */
.page-home .info-box p,
.page-home .info-box p strong {
    color: rgba(var(--ink) / 0.92);
}

/* Doc-Kacheln: weiße Schrift, gelbe Icons */
.page-home .doc-item,
.page-home .doc-item span {
    color: rgba(var(--ink) / 0.92);
}

.page-home .doc-item i {
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
}

.page-home .doc-item:hover {
    border-color: var(--tigers-yellow) !important;
    background: rgba(var(--ink) / 0.2) !important;
    color: rgb(var(--ink));
}

.page-home .doc-item:hover i {
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
}

/* Feedback-Links gut lesbar */
.page-home .feedback-link,
.page-home .feedback-link i {
    color: var(--tigers-yellow-text); -webkit-text-stroke: 0.4px var(--tigers-yellow-outline); text-shadow: 0 0 1px var(--tigers-yellow-outline);
}

/* Login-Seite: gleiche Stage, weiße Login-Karte bleibt */
.login-page {
    background: transparent;
}

