.tabular-nums { font-variant-numeric: tabular-nums; }

/* Yeşil Pulsing Nokta */
.pulse-nokta {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.ozet-kart {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 3px 4px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: background 0.3s, border-color 0.3s;
}

.kart-ust-grup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1px;
}

.kart-logo {
    width: 12px;
    height: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.kart-name {
    font-size: 7.5px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kart-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.1;
}

.kart-val {
    font-size: 9.5px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.2px;
    transition: color 0.3s;
}

.kart-val-try {
    font-size: 7.5px;
    font-weight: 600;
    color: #94a3b8;
}

.kart-time {
    font-size: 6.5px;
    font-weight: 500;
    color: #cbd5e1;
    margin-top: 1px;
}

#ozet-ust-bar i:active { transform: scale(0.9); }

/* --- TÜM SAYFAYI KAPSAYAN DARK MODE (GECE TEMASI) --- */
html.dark body { background-color: #0f172a !important; color: #f8fafc !important; }
html.dark nav { background-color: #1e293b !important; border-color: #334155 !important; }
html.dark .bg-white { background-color: #1e293b !important; }
html.dark .bg-gray-50 { background-color: #0f172a !important; }
html.dark .bg-gray-100 { background-color: #334155 !important; }
html.dark .text-slate-800, html.dark .text-gray-800 { color: #f8fafc !important; }
html.dark .text-slate-500, html.dark .text-gray-500 { color: #94a3b8 !important; }
html.dark .border-gray-100, html.dark .border-gray-200 { border-color: #334155 !important; }

/* Özet alanı dark mode spesifik detayları */
html.dark #ozet-container, html.dark #ozet-ust-bar, html.dark #ozet-toplamlar { background: #1e293b !important; border-color: #334155 !important; }
html.dark .ozet-kart { background: #0f172a !important; border-color: #334155 !important; }
html.dark .kart-val { color: #f8fafc !important; }
html.dark #ozet-okx, html.dark #ozet-tutar, html.dark #genel-toplam-text { color: #f8fafc !important; }
