/* ============================================================
   COLD CALLING / SALES ENGAGEMENT MODULE
   Centro-Portal – Native Integration
   ============================================================ */

/* ─── KPI-Karten ──────────────────────────────────────────── */
.cc-kpi-card {
    border-radius: 12px;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: default;
}
.cc-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
}
.cc-kpi-icon { margin-bottom: .25rem; }
.cc-kpi-value { line-height: 1.1; }

/* ─── Status-Badges ───────────────────────────────────────── */
.cc-badge-Entwurf       { background: #6c757d; }
.cc-badge-Aktiv         { background: #198754; }
.cc-badge-Pausiert      { background: #fd7e14; }
.cc-badge-Abgeschlossen { background: #16a34a; }

/* ─── Kampagnen-Karte in der Liste ────────────────────────── */
.cc-kampagne-card {
    border-left: 4px solid transparent;
    transition: background .15s;
    cursor: pointer;
}
.cc-kampagne-card:hover { background: rgba(22,163,74,.04); }
.cc-kampagne-link { transition: color .15s; }
.cc-kampagne-card:hover .cc-kampagne-link { color: #16a34a !important; text-decoration: underline; }
.cc-kampagne-card.status-Aktiv         { border-left-color: #198754; }
.cc-kampagne-card.status-Entwurf       { border-left-color: #6c757d; }
.cc-kampagne-card.status-Pausiert      { border-left-color: #fd7e14; }
.cc-kampagne-card.status-Abgeschlossen { border-left-color: #16a34a; }

/* ─── Dropzone ────────────────────────────────────────────── */
.cc-dropzone {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 2.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.cc-dropzone:hover,
.cc-dropzone-over {
    border-color: #16a34a;
    background: rgba(22,163,74,.04);
}

/* ============================================================
   DIALER – FULLSCREEN FOKUS-MODUS
   ============================================================ */

body.dialer-body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Topbar */
.dialer-topbar {
    height: 56px;
    min-height: 56px;
    background: var(--bs-body-bg);
    border-bottom: 1px solid var(--bs-border-color);
    flex-shrink: 0;
    z-index: 100;
}

.dialer-kampagne-select {
    min-width: 240px;
    font-weight: 600;
}

/* Hauptbereich */
.dialer-main {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spalten */
.dialer-lead-col {
    height: calc(100vh - 56px);
    overflow: hidden;
    background: var(--bs-body-bg);
}

.dialer-doc-col {
    height: calc(100vh - 56px);
    overflow-y: auto;
    background: var(--bs-body-bg);
    scrollbar-width: thin;
}

/* Avatar */
.dialer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dialer-firmenname { font-size: 1.4rem; }

/* Kontakt-Grid */
.dialer-contact-grid { display: flex; flex-direction: column; gap: .5rem; }

.dialer-contact-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    background: var(--bs-tertiary-bg);
    min-height: 40px;
}

/* Telefon-Links – extra auffällig */
.dialer-phone-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-body-color);
    text-decoration: none;
    letter-spacing: .5px;
    cursor: pointer;
}
.dialer-phone-link:hover { color: #198754; text-decoration: underline; }

/* Notizen-Box */
.dialer-notes-box {
    background: var(--bs-tertiary-bg);
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: .9rem;
    min-height: 48px;
    white-space: pre-wrap;
    max-height: 120px;
    overflow-y: auto;
}

/* Anruf-Historie */
.dialer-history-list { max-height: 140px; overflow-y: auto; }
.dialer-history-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .5rem;
    border-radius: 6px;
    font-size: .82rem;
    margin-bottom: .2rem;
    background: var(--bs-tertiary-bg);
}

/* ─── Ergebnis-Buttons ────────────────────────────────────── */
.dialer-result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .6rem;
}

.dialer-result-btn {
    border: 2px solid;
    border-radius: 10px;
    padding: .65rem .5rem;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    text-align: center;
    background: transparent;
    color: var(--bs-body-color);
    min-height: 72px;
}

.dialer-result-btn:hover { transform: translateY(-2px); }
.dialer-result-btn.selected {
    color: #fff !important;
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

/* Termin-Button extra groß */
.result-btn-highlight {
    border-width: 2px;
    grid-column: span 1;
}

/* Highlight je Ergebnis */
.dialer-result-btn[data-result="TerminVereinbart"].selected   { background: #198754; border-color: #198754; }
.dialer-result-btn[data-result="KeinInteresse"].selected       { background: #dc3545; border-color: #dc3545; }
.dialer-result-btn[data-result="NichtErreicht"].selected       { background: #6c757d; border-color: #6c757d; }
.dialer-result-btn[data-result="Besetzt"].selected             { background: #ffc107; border-color: #ffc107; color: #000 !important; }
.dialer-result-btn[data-result="Rueckruf"].selected            { background: #0dcaf0; border-color: #0dcaf0; color: #000 !important; }
.dialer-result-btn[data-result="GespraechGefuehrt"].selected   { background: #0d6efd; border-color: #0d6efd; }
.dialer-result-btn[data-result="ErneutVersuchen"].selected     { background: #6c757d; border-color: #6c757d; }
.dialer-result-btn[data-result="EmailGesendet"].selected       { background: #6f42c1; border-color: #6f42c1; }
.dialer-result-btn[data-result="EntscheiderNichtErreichbar"].selected { background: #6c757d; border-color: #6c757d; }
.dialer-result-btn[data-result="FollowUp"].selected            { background: #fd7e14; border-color: #fd7e14; }
.dialer-result-btn[data-result="FalscheNummer"].selected       { background: #dc3545; border-color: #dc3545; }

/* ─── Dynamische Felder ───────────────────────────────────── */
.dialer-dynamic-fields {
    background: var(--bs-tertiary-bg);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--bs-border-color);
    animation: fadeIn .2s;
}

@keyframes fadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ─── KI-Grund-Buttons ────────────────────────────────────── */
.ki-grund {
    border-radius: 20px;
    font-size: .82rem;
    transition: all .15s;
}
.ki-grund.selected { background: #dc3545; border-color: #dc3545; color: #fff; }

/* ─── Speichern-Button ────────────────────────────────────── */
.dialer-save-btn {
    border-radius: 10px;
    font-size: 1rem;
    transition: all .15s;
}
.dialer-save-btn:not(:disabled) {
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0%,100% { box-shadow: 0 0 0 0 rgba(25,135,84,.4); }
    50%      { box-shadow: 0 0 0 8px rgba(25,135,84,.0); }
}

/* ─── Timer ───────────────────────────────────────────────── */
.dialer-timer {
    font-size: .95rem;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

/* ─── Hero-Icon (Start & Done State) ─────────────────────── */
.dialer-state { max-width: 480px; }
.dialer-hero-icon { font-size: 4rem; }

/* ─── Progress Bar ────────────────────────────────────────── */
.dialer-topbar .progress { border-radius: 4px; }

/* ─── Dark-Mode Korrekturen ───────────────────────────────── */
[data-bs-theme="dark"] .dialer-contact-row,
[data-bs-theme="dark"] .dialer-notes-box,
[data-bs-theme="dark"] .dialer-history-item {
    background: rgba(255,255,255,.06);
}

[data-bs-theme="dark"] .dialer-result-btn {
    color: #e9ecef;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .dialer-lead-col,
    .dialer-doc-col {
        height: auto;
        overflow-y: visible;
    }
    .dialer-result-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dialer-topbar { flex-wrap: wrap; height: auto; padding: .5rem 1rem; }
}

@media (max-width: 576px) {
    .dialer-result-grid { grid-template-columns: repeat(2, 1fr); }
    .dialer-firmenname  { font-size: 1.1rem; }
}

/* ============================================================
   LEADERBOARD / GAMIFICATION
   ============================================================ */

/* ─── Wetteinsatz-Banner ──────────────────────────────────── */
.lb-prize-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(245,158,11,.35);
}

.lb-prize-inner {
    padding: 1.75rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lb-prize-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,.04) 20px,
        rgba(255,255,255,.04) 40px
    );
}

.lb-prize-label {
    color: rgba(255,255,255,.85);
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.lb-prize-value {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,.25);
    margin-bottom: .4rem;
}

.lb-prize-hint {
    color: rgba(255,255,255,.75);
    font-size: .85rem;
}

/* ─── Podium ──────────────────────────────────────────────── */
.lb-podium-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem 0;
}

.lb-podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 220px;
    min-width: 140px;
}

.lb-pod-crown {
    font-size: 1.6rem;
    color: #f59e0b;
    margin-bottom: .25rem;
    animation: lb-crown-bounce 1.5s ease-in-out infinite;
}

@keyframes lb-crown-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.lb-pod-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .6rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.lb-pod-gold   { background: linear-gradient(135deg, #f59e0b, #d97706); }
.lb-pod-silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.lb-pod-bronze { background: linear-gradient(135deg, #cd7c2f, #a05a1e); }

.lb-pod-name {
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    margin-bottom: .2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.lb-pod-score {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.lb-podium-1 .lb-pod-score { color: #f59e0b; }
.lb-podium-2 .lb-pod-score { color: #64748b; }
.lb-podium-3 .lb-pod-score { color: #a05a1e; }

.lb-pod-stats {
    font-size: .78rem;
    text-align: center;
    margin-bottom: .75rem;
    color: var(--bs-secondary-color);
}

.lb-pod-stat-calls { color: var(--bs-secondary-color); }
.lb-pod-stat-termine { color: #198754; font-weight: 600; }

.lb-pod-block {
    width: 100%;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    padding: .6rem 0;
    color: #fff;
    letter-spacing: .5px;
}

.lb-pod-block-1 { background: linear-gradient(135deg, #f59e0b, #d97706); min-height: 80px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: .75rem; }
.lb-pod-block-2 { background: linear-gradient(135deg, #94a3b8, #64748b); min-height: 60px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: .75rem; }
.lb-pod-block-3 { background: linear-gradient(135deg, #cd7c2f, #a05a1e); min-height: 44px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: .75rem; }

/* ─── Tabelle ─────────────────────────────────────────────── */
.lb-medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
}

.lb-medal-gold   { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 2px 8px rgba(245,158,11,.4); }
.lb-medal-silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.lb-medal-bronze { background: linear-gradient(135deg, #cd7c2f, #a05a1e); }

.lb-mini-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lb-row-first {
    background: rgba(245,158,11,.06) !important;
}

.lb-bar-gold { background: linear-gradient(90deg, #f59e0b, #d97706) !important; }

/* ─── Live-Dot ────────────────────────────────────────────── */
.lb-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #198754;
    display: inline-block;
    animation: lb-pulse 1.4s ease-in-out infinite;
}

@keyframes lb-pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .4; transform: scale(.7); }
}

/* ─── Refresh Spin ────────────────────────────────────────── */
.lb-spin {
    animation: lb-spin .5s linear;
}

@keyframes lb-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ─── Telefonleitfaden ────────────────────────────────────── */
.dialer-leitfaden {
    font-size: 0.85rem;
    line-height: 1.5;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}
.leitfaden-section-title {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-primary);
    margin-top: 0.9rem;
    margin-bottom: 0.2rem;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(13,110,253,0.25);
}
.leitfaden-objection {
    font-weight: 600;
    color: var(--bs-warning);
    margin-top: 0.4rem;
    font-size: 0.82rem;
}
.leitfaden-line { color: var(--bs-body-color); }
.leitfaden-gap  { height: 0.4rem; }

/* ─── Tab-Navigation (linke Spalte) ──────────────────────── */
.dialer-left-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--bs-border-color);
    flex-shrink: 0;
}

.dialer-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: .5rem .875rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--bs-secondary-color);
    cursor: pointer;
    margin-bottom: -1px;
    border-radius: 4px 4px 0 0;
    transition: color .15s, border-color .15s;
}
.dialer-tab:hover { color: var(--bs-body-color); }
.dialer-tab.active { color: var(--bs-primary); border-bottom-color: var(--bs-primary); }

.dialer-left-view {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* ─── Telefonleitfaden (Vollansicht) ──────────────────────── */
.dialer-leitfaden-full {
    font-size: var(--leitfaden-font-size, 0.88rem);
    line-height: 1.65;
}

/* ─── KI-Einwandbehandlung Panel ──────────────────────────── */
.dialer-ki-panel {
    background: var(--bs-tertiary-bg);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--bs-border-color);
}

.dialer-ki-header {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--bs-secondary-color);
    margin-bottom: .6rem;
}

.dialer-ki-response {
    background: rgba(13,110,253,.06);
    border-radius: 8px;
    padding: .75rem 1rem;
    border: 1px solid rgba(13,110,253,.15);
    font-size: .88rem;
    line-height: 1.55;
    max-height: 200px;
    overflow-y: auto;
}

.dialer-ki-answer { color: var(--bs-body-color); }

/* ─── Mikrofon-Button ─────────────────────────────────────── */
.dialer-mic-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid #dc3545;
    background: transparent;
    color: #dc3545;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}
.dialer-mic-btn:hover {
    background: rgba(220,53,69,.1);
    transform: scale(1.06);
}
.dialer-mic-active {
    background: #dc3545 !important;
    color: #fff !important;
    animation: mic-pulse 1s ease-in-out infinite;
}
@keyframes mic-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(220,53,69,.45); }
    50%      { box-shadow: 0 0 0 14px rgba(220,53,69,0); }
}

/* ─── Zusatz-Tag Buttons ──────────────────────────────────── */
.dialer-tag-btn.active { background-color: var(--bs-warning); border-color: var(--bs-warning); color: #000; }
.dialer-tag-btn.active.btn-outline-info { background-color: var(--bs-info); border-color: var(--bs-info); color: #000; }
.dialer-tag-btn.active.btn-outline-secondary { background-color: var(--bs-secondary); border-color: var(--bs-secondary); color: #fff; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .lb-podium-wrap { gap: .5rem; }
    .lb-pod-avatar  { width: 48px; height: 48px; font-size: 1.2rem; }
    .lb-prize-value { font-size: 1.6rem; }
    .lb-pod-block-1 { min-height: 56px; }
    .lb-pod-block-2 { min-height: 44px; }
    .lb-pod-block-3 { min-height: 32px; }
}

/* ============================================================
   STAGE-TRACKER (Dialer + Lead-Detail)
   ============================================================ */

.stage-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--bs-border-color);
}

.stage-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    text-align: center;
    padding: 0 .3rem;
    position: relative;
    background: var(--bs-tertiary-bg);
    color: var(--bs-secondary-color);
    transition: background .2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
    white-space: nowrap;
    overflow: hidden;
}
.stage-step:first-child { clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%); }
.stage-step:last-child  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%); }

.stage-step.done {
    background: #198754;
    color: #fff;
}
.stage-step.current {
    background: #16a34a;
    color: #fff;
    font-weight: 700;
}
.stage-step.disqualifiziert.current {
    background: #dc3545;
}

/* Compact version for Dialer topbar */
.stage-bar-sm { height: 24px; }
.stage-bar-sm .stage-step { font-size: .65rem; }

/* ============================================================
   TIMELINE (Dialer-History + Lead-Detail)
   ============================================================ */

.tl-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tl-entry {
    display: flex;
    gap: .75rem;
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--bs-border-color-translucent);
    position: relative;
    transition: background .15s;
}
.tl-entry:last-child { border-bottom: none; }
.tl-entry:hover { background: rgba(var(--bs-emphasis-color-rgb), .03); }

.tl-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: .1rem;
}
.tl-icon-call-ok  { background: rgba(25,135,84,.15); color: #198754; }
.tl-icon-call-no  { background: rgba(108,117,125,.15); color: #6c757d; }
.tl-icon-notiz    { background: rgba(255,193,7,.15); color: #856404; }
.tl-icon-wv       { background: rgba(13,202,240,.15); color: #055160; }
.tl-icon-termin   { background: rgba(22,163,74,.15); color: #16a34a; }

.tl-body { flex: 1; min-width: 0; }
.tl-head { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.tl-date { font-size: .72rem; color: var(--bs-secondary-color); white-space: nowrap; }
.tl-user { font-size: .72rem; color: var(--bs-secondary-color); }
.tl-note { font-size: .8rem; margin-top: .2rem; white-space: pre-wrap; color: var(--bs-body-color); }
.tl-note-muted { color: var(--bs-secondary-color); font-style: italic; }

/* ============================================================
   LEAD-DETAIL PAGE
   ============================================================ */

.ld-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff; font-size: 1.6rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ld-detail-row {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--bs-border-color-translucent);
    font-size: .88rem;
}
.ld-detail-row:last-child { border-bottom: none; }
.ld-detail-label { color: var(--bs-secondary-color); min-width: 90px; flex-shrink: 0; font-size: .78rem; padding-top: .1rem; }
.ld-detail-value { flex: 1; font-weight: 500; word-break: break-word; }

.ld-notiz-area {
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
    background: var(--bs-tertiary-bg);
    padding: .75rem 1rem;
    font-size: .88rem;
    min-height: 80px;
    resize: vertical;
    width: 100%;
    color: var(--bs-body-color);
    transition: border-color .2s;
}
.ld-notiz-area:focus { outline: none; border-color: #16a34a; }

.ld-tab-filter { border-bottom: 1px solid var(--bs-border-color); margin-bottom: 0; }
.ld-tab-filter .nav-link { font-size: .82rem; padding: .5rem .9rem; color: var(--bs-secondary-color); }
.ld-tab-filter .nav-link.active { color: #16a34a; border-bottom: 2px solid #16a34a; font-weight: 600; }
