/**
 * EPJG Daily Map Replay - Styles v1.6
 *
 * v1.6 Changes:
 * - NEW: Vertical density bars similar to timeline.js
 * - Green bars (rgba(16, 185, 129)) with height based on aircraft count
 * - Opacity 0.2-1.0 based on density, positioned at bottom of timeline
 *
 * v1.5 Changes:
 * - Removed old .dm-hour-activity styles (replaced by .dm-hour-background gradient)
 */

/* ===== Modal Overlay ===== */
.daily-map-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.daily-map-overlay.visible {
    display: flex !important;
    opacity: 1 !important;
}

.daily-map-content {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(28, 28, 28, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 96vw;
    max-width: 1600px;
    height: 94vh;
    max-height: 1000px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.daily-map-overlay.visible .daily-map-content {
    transform: scale(1);
}

/* ===== Header ===== */
.daily-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    gap: 16px;
    flex-wrap: wrap;
}
.daily-map-title h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #f8fafc;
    font-weight: 600;
}
.daily-map-title p {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: #94a3b8;
}
.daily-map-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.dm-btn {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.dm-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}
.dm-btn-play {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}
.dm-btn-play:hover {
    background: rgba(34, 197, 94, 0.5);
}
/* stan „gra": play() dodaje .active — bez tej reguły przycisk się nie zmieniał */
.dm-btn-play.active {
    background: rgba(34, 197, 94, 0.85);
    border-color: #22c55e;
    color: #06220f;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}
.dm-btn-close {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}
.dm-btn-close:hover {
    background: rgba(239, 68, 68, 0.4);
}
.dm-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.dm-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
.dm-select option {
    background: #1a1a1a;
    color: #fff;
}

.dm-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}
.dm-checkbox input {
    cursor: pointer;
}

/* ===== Body ===== */
.daily-map-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.dm-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #94a3b8;
    font-size: 1.1rem;
}
.dm-error {
    color: #ef4444;
}
.dm-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(59, 130, 246, 0.3);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: dm-spin 1s linear infinite;
    margin-bottom: 16px;
}
@keyframes dm-spin {
    to { transform: rotate(360deg); }
}

.dm-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== Map ===== */
.dm-map {
    flex: 1;
    min-height: 300px;
    background: #111111;
}

/* ===== Timeline ===== */
.dm-timeline-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-time-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    flex-wrap: wrap;
}
#dm-current-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}
.dm-time-separator {
    color: #475569;
}
#dm-aircraft-count {
    font-size: 0.9rem;
    color: #3b82f6;
}

/* Zoom Controls */
.dm-zoom-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-zoom-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-zoom-btn:hover {
    background: rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.6);
    color: #bfdbfe;
}

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

.dm-zoom-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.dm-zoom-level {
    font-size: 0.85rem;
    color: #94a3b8;
    min-width: 28px;
    text-align: center;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.dm-timeline-wrapper {
    position: relative;
}

.dm-timeline-bar {
    height: 40px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.dm-timeline-bar:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.dm-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.2));
    pointer-events: none;
    will-change: width;
}

.dm-timeline-cursor {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
    pointer-events: none;
    /* Use transform for GPU acceleration */
    will-change: transform;
    transform: translateX(0);
}

.dm-hour-marker {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.dm-tx-marker {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #ef4444;
    border-radius: 2px;
    pointer-events: none;
    opacity: 0.7;
}
/* ołówek contrib w feedzie (tylko atc.php — gate w _evRowHtml) */
.dm-ev-edit {
    flex-shrink: 0;
    background: none;
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #93c5fd;
    border-radius: 6px;
    font-size: 11px;
    padding: 2px 6px;
    cursor: pointer;
    align-self: center;
}
.dm-ev-edit:hover { background: rgba(59, 130, 246, 0.2); }

/* aktualnie grająca transmisja — marker rośnie i pulsuje */
.dm-tx-marker.playing {
    width: 6px;
    height: 22px;
    opacity: 1;
    background: #f87171;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.9);
    animation: dm-tx-pulse 0.9s ease-in-out infinite;
    z-index: 5;
}
@keyframes dm-tx-pulse {
    0%, 100% { box-shadow: 0 0 4px rgba(239, 68, 68, 0.6); }
    50%      { box-shadow: 0 0 12px rgba(239, 68, 68, 1); }
}

/* Now playing: jedna linia między transportem a osią (wypełnia playTransmission) */
.dm-nowplaying {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 10px;
    font-size: 12px;
    color: #d1d5db;
    background: rgba(239, 68, 68, 0.07);
    border-left: 3px solid rgba(239, 68, 68, 0.6);
    min-height: 22px;
}
.dm-nowplaying[hidden] { display: none; }
.dm-np-live {
    color: #f87171;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    animation: dm-np-blink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dm-np-blink { 50% { opacity: 0.35; } }
.dm-np-time { font-family: ui-monospace, monospace; color: #fca5a5; flex-shrink: 0; }
.dm-np-freq { color: #9ca3af; flex-shrink: 0; }
.dm-np-cs   { color: #93c5fd; font-weight: 600; flex-shrink: 0; }
.dm-np-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    color: #b8c0cc;
    font-style: italic;
}

.dm-inactive-zone {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.dm-hour-background {
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    transition: background-color 0.2s ease;
}

.dm-density-bar {
    position: absolute;
    bottom: 0;
    pointer-events: none;
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

/* v2.13: Continuous ADS-B detection blocks (green) */
.dm-detection-block {
    position: absolute;
    bottom: 0;
    height: 100%;
    background-color: rgba(16, 185, 129, 0.3);
    pointer-events: none;
    border-left: 1px solid rgba(16, 185, 129, 0.5);
    border-right: 1px solid rgba(16, 185, 129, 0.5);
    transition: all 0.3s ease;
}

.dm-detection-block:hover {
    background-color: rgba(16, 185, 129, 0.4);
}

.dm-block-gap {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    background: rgba(100, 116, 139, 0.2);
    pointer-events: none;
    z-index: 5;
}

.dm-timeline-labels {
    display: flex;
    justify-content: space-between;
    padding: 6px 0 0;
    font-size: 11px;
    color: #64748b;
    font-family: monospace;
    position: relative;
    height: 20px;
}

/* ===== Info Panel ===== */
.dm-info-panel {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 80px;
}

.dm-transmission-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dm-tx-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dm-tx-icon {
    font-size: 1.4rem;
}

.dm-tx-time {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #fbbf24;
}

.dm-tx-speaker {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(96, 165, 250, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.4);
    border-radius: 4px;
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
}

.dm-tx-frequency {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(59, 130, 246, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 4px;
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.dm-tx-callsign {
    font-size: 1.05rem;
    font-weight: 700;
    color: #22c55e;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    letter-spacing: 0.5px;
}

.dm-tx-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    max-height: 60px;
    overflow-y: auto;
    padding-right: 4px;
}

.dm-tx-text::-webkit-scrollbar {
    width: 4px;
}

.dm-tx-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.dm-tx-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.dm-tx-text.playing {
    color: #fbbf24;
    animation: dm-pulse 1.5s ease-in-out infinite;
}

@keyframes dm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== Aircraft Icons ===== */
.dm-aircraft-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.dm-aircraft-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.dm-aircraft-wrapper.highlighted .dm-aircraft-circle {
    animation: dm-circle-pulse-highlight 1.2s ease-in-out infinite;
}
.dm-aircraft-wrapper.active .dm-aircraft-circle {
    animation: dm-circle-pulse-active 0.8s ease-in-out infinite;
}

@keyframes dm-circle-pulse-highlight {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
@keyframes dm-circle-pulse-active {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(34, 197, 94, 0.8), 0 0 20px rgba(34, 197, 94, 0.4); }
    50% { transform: scale(1.2); box-shadow: 0 0 16px rgba(34, 197, 94, 1), 0 0 30px rgba(34, 197, 94, 0.6); }
}

.dm-aircraft-label {
    margin-top: 2px;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

/* ===== Aircraft Tooltip ===== */
.dm-aircraft-tooltip {
    background: rgba(18, 18, 18, 0.95) !important;
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 12px !important;
    color: #e2e8f0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}
.dm-aircraft-tooltip::before {
    border-top-color: rgba(59, 130, 246, 0.5) !important;
}

/* ===== Airport Marker ===== */
.dm-airport-marker {
    background: rgba(245, 158, 11, 0.85);
    color: #000;
    font-weight: bold;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== Runway styling ===== */
.dm-runway {
    stroke: #fbbf24;
    stroke-width: 3;
    fill: none;
    opacity: 0.9;
}

.dm-runway-label {
    background: rgba(30, 30, 30, 0.9);
    color: #fbbf24;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    border: 1px solid rgba(251, 191, 36, 0.5);
    white-space: nowrap;
    font-family: monospace;
}

/* ===== CTR Zone ===== */
.dm-ctr-label {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .daily-map-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .daily-map-controls {
        width: 100%;
        justify-content: flex-start;
    }
    #dm-current-time {
        font-size: 1.2rem;
    }
    .dm-aircraft-label {
        font-size: 8px;
    }
}
/* ============================================================
   Tryb reportażu (2026-07-05): mapa-scena + przebieg dnia
   ============================================================ */
.dm-content-wrapper { flex-direction: row !important; }
.dm-stage {
    flex: 1 1 62%; min-width: 0; display: flex; flex-direction: column;
}
.dm-map { flex: 1; min-height: 260px; }

/* --- pasek transportu (jeden zamiast 4 stref) --- */
.dm-transport {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 8px;
}
.dm-transport .dm-btn { padding: 4px 9px; font-size: 14px; }
.dm-clock {
    font-family: 'JetBrains Mono','Fira Code',ui-monospace,monospace;
    font-variant-numeric: tabular-nums;
    font-size: 1.25rem; font-weight: 700; color: #fbbf24;
    text-shadow: 0 0 16px rgba(251,191,36,.45); letter-spacing: .02em;
}
.dm-acount { font-size: .82rem; color: #34d399; font-family: ui-monospace, monospace; }
.dm-transport-spring { flex: 1; }
.dm-metar {
    font-size: 10px; color: #6b7280; font-family: ui-monospace, monospace;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-top: 6px;
}
.dm-timeline-container { padding: 10px 16px 12px; }

/* --- scrub tooltip --- */
.dm-timeline-bar { position: relative; cursor: pointer; }
.dm-scrub-tip {
    position: absolute; top: -26px; transform: translateX(-50%);
    background: #fbbf24; color: #12151b; font-family: ui-monospace, monospace;
    font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 4px;
    white-space: nowrap; pointer-events: none; z-index: 5;
}
.dm-scrub-tip::after {
    content: ""; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%);
    border: 4px solid transparent; border-top-color: #fbbf24;
}

/* --- prawa kolumna: przebieg dnia --- */
.dm-feed {
    flex: 0 0 clamp(300px, 34%, 440px); min-width: 0;
    display: flex; flex-direction: column;
    background: #0e131c; border-left: 1px solid rgba(255,255,255,.12);
}
.dm-feed-head {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.dm-feed-title {
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
    color: #9aa7b8; font-weight: 600;
}
.dm-feed-modes { display: inline-flex; background: rgba(255,255,255,.05); border-radius: 7px; padding: 2px; }
.dm-fmode {
    border: 0; background: transparent; color: #64748b; cursor: pointer;
    font-size: 11px; padding: 4px 9px; border-radius: 5px; font-family: inherit;
}
.dm-fmode.active { background: rgba(251,191,36,.16); color: #fbbf24; }
.dm-feed-count { margin-left: auto; font-family: ui-monospace, monospace; font-size: 11px; color: #64748b; }

.dm-feed-list { flex: 1; overflow-y: auto; padding: 6px; display: flex; flex-direction: column; gap: 4px; }
.dm-feed-list::-webkit-scrollbar { width: 8px; }
.dm-feed-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 4px; }

/* wiersz zdarzenia */
.dm-ev {
    display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center;
    padding: 7px 9px; border-radius: 8px; border: 1px solid transparent;
    cursor: pointer; transition: background .12s;
}
.dm-ev:hover { background: rgba(255,255,255,.04); }
.dm-ev.now { background: rgba(251,191,36,.10); border-color: rgba(251,191,36,.4); }
.dm-ev-tm { font-family: ui-monospace, monospace; font-size: 11px; color: #64748b; font-variant-numeric: tabular-nums; align-self: start; padding-top: 2px; }
.dm-ev-mid { min-width: 0; }
.dm-ev-cs { font-family: ui-monospace, monospace; font-size: 12.5px; color: #e8ebf0; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.dm-ev-say { font-size: 11px; color: #9aa7b8; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.dm-ev-thumb { width: 40px; height: 28px; border-radius: 4px; object-fit: cover; background: #1a2230; border: 1px solid rgba(255,255,255,.1); flex-shrink: 0; }
.dm-ev-thumb.ph { display: flex; align-items: center; justify-content: center; font-size: 12px; color: #3a4658; }
.dm-ev-badge { font-family: ui-monospace, monospace; font-size: 9.5px; font-weight: 700; padding: 1px 6px; border-radius: 999px; }
.dm-ev.playing .dm-ev-cs::before { content: "▶"; color: #fbbf24; font-size: 9px; }

/* grupa (widok wg statku) */
.dm-grp-head {
    display: flex; align-items: center; gap: 8px; padding: 7px 9px; cursor: pointer;
    font-family: ui-monospace, monospace; font-size: 12.5px; color: #e8ebf0; font-weight: 600;
    border-radius: 8px;
}
.dm-grp-head:hover { background: rgba(255,255,255,.04); }
.dm-grp-head .dm-grp-caret { color: #64748b; transition: transform .15s; }
.dm-grp.collapsed .dm-grp-caret { transform: rotate(-90deg); }
.dm-grp.collapsed .dm-grp-body { display: none; }
.dm-grp-count { margin-left: auto; font-size: 11px; color: #64748b; font-weight: 400; }
.dm-grp-body { padding-left: 8px; }

.dm-feed-empty { padding: 30px 16px; text-align: center; color: #64748b; font-size: 13px; }

/* responsywnie: wąski ekran = feed pod mapą */
@media (max-width: 780px) {
    .dm-content-wrapper { flex-direction: column !important; }
    .dm-feed { flex: 0 0 40%; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
}
@media (prefers-reduced-motion: reduce) {
    .dm-ev, .dm-grp-head .dm-grp-caret { transition: none; }
}

/* Pełny log: zwykłe transmisje (nie-operacje) lżej niż operacje */
.dm-ev-tx { opacity: .8; }
.dm-ev-tx .dm-ev-cs { font-weight: 500; }
.dm-ev-tx.now, .dm-ev-tx:hover { opacity: 1; }
.dm-ev-cs-muted { color: #64748b; }
.dm-ev-mic { width: 40px; height: 28px; display: flex; align-items: center;
    justify-content: center; font-size: 13px; opacity: .5; flex-shrink: 0; }
