

.ny-london-stats-panel {
    position: absolute;
    top: 20px;      
    left: 240px;    
    
    background: rgba(40, 44, 52, 0.95);
    border: 2px solid #ff6b35;
    border-radius: 6px;
    padding: 10px 14px;
    
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: #ff6b35;
    
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    
    z-index: 1000;
    
    min-width: 200px;
    
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.ny-london-stats-panel.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.session-icon {
    font-size: 12px;
}

.session-title {
    font-weight: bold;
    color: #d4af37;
    font-size: 11px;
}

.session-time {
    font-weight: bold;
    color: #ff6b35;
}

.session-progress {
    margin-left: auto;
    font-weight: bold;
    color: #d4af37;
}

.divider {
    color: rgba(255, 107, 53, 0.3);
}

.stats-ribbon {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 4px 6px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 3px;
}

.ribbon-label {
    font-size: 9px;
    color: #888;
    font-weight: bold;
}

.ribbon-icon {
    font-size: 11px;
}

.ribbon-text {
    font-weight: bold;
    font-size: 10px;
}

.stats-indicators-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 6px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 3px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-weight: bold;
    color: #888;
    font-size: 9px;
}

.stat-value {
    font-weight: bold;
    color: #ff6b35;
    min-width: 32px;
}

.stat-status {
    font-size: 11px;
}

.stats-description {
    margin-top: 8px;
    padding: 4px 6px;
    font-size: 9px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .ny-london-stats-panel {
        left: 20px;
        top: 120px;
    }
}

.stat-label {
    font-weight: bold;
    color: #888;
    font-size: 9px;
    cursor: help;  
    display: inline-block;  
}

.ribbon-label {
    font-size: 9px;
    color: #888;
    font-weight: bold;
    cursor: help;  
    display: inline-block;  
}