/**
 * Erişilebilirlik (WCAG 2.1 AA) renk düzeltmeleri — tabler.min.css SONRASI yüklenir.
 * Tüm metin/zemin ikilileri >= 4.5:1 hedeflenir (normal metin).
 *
 * Koyu tema (varsayılan) zeminleri: #0b1020 / #1a2234 civarı
 */

:root {
    --a11y-green-fg: #34d399;   /* koyu zeminde 7.9:1, beyazda 2.5:1 → açık temada koyu sürüm kullanılır */
    --a11y-red-fg: #f87171;     /* koyu zeminde 6.3:1 */
    --a11y-yellow-fg: #fbbf24;  /* koyu zeminde 10:1 */
}

[data-bs-theme="light"] {
    --a11y-green-fg: #047857;   /* beyazda 5.2:1 */
    --a11y-red-fg: #b91c1c;     /* beyazda 5.9:1 */
    --a11y-yellow-fg: #92400e;  /* beyazda 6.3:1 */
}

/* ---- Canlı bağlantı durumu rozeti: dolgulu, yüksek kontrast ---- */
.badge-live {
    font-weight: 700;
    letter-spacing: .02em;
    border-radius: 6px;
}
.badge-live-on {
    background-color: #14532d !important; /* koyu yeşil zemin */
    color: #86efac !important;            /* açık yeşil yazı — 8.9:1 */
    border: 1px solid #16a34a;
}
.badge-live-off {
    background-color: #1f2937 !important;
    color: #e5e7eb !important;             /* gri zeminde açık gri yazı — 11:1 */
    border: 1px dashed #6b7280;
}

/* ---- Fiyat değişim renkleri: her iki temada AA ---- */
.price-up   { color: var(--a11y-green-fg)  !important; font-weight: 600; }
.price-down { color: var(--a11y-red-fg)    !important; font-weight: 600; }

/* ---- Sinyal rozetleri: -lt varyantlarının yazı kontrastını garantiye al ---- */
.badge[class*="bg-green-lt"]  { color: var(--a11y-green-fg)  !important; font-weight: 600; }
.badge[class*="bg-red-lt"]    { color: var(--a11y-red-fg)    !important; font-weight: 600; }
.badge[class*="bg-yellow-lt"] { color: var(--a11y-yellow-fg) !important; font-weight: 600; }
.badge[class*="bg-blue-lt"],
.badge[class*="bg-lime-lt"],
.badge[class*="bg-secondary-lt"] { font-weight: 600; }

/* Dolgulu durum rozetlerinde beyaz yazı garanti edilemezse zorla koyulaştır */
.badge.bg-success { background-color: #15803d !important; color: #fff !important; } /* 4.7:1 */
.badge.bg-danger  { background-color: #b91c1c !important; color: #fff !important; } /* 5.9:1 */
.badge.bg-warning { background-color: #b45309 !important; color: #fff !important; } /* 4.8:1 */

/* ---- Klavye odağı: belirgin odak halkası ---- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid #60a5fa !important;
    outline-offset: 2px !important;
    border-radius: 4px;
}

/* ---- Hareket azaltma tercihi ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ---- Küçük gri metinlerin kontrastını yükselt (koyu temada) ---- */
[data-bs-theme="dark"] .text-secondary,
[data-bs-theme="dark"] .text-muted {
    color: #a5b0c6 !important; /* koyu zeminde ~6:1 */
}
