/* Connection status styling */
.connection-indicator {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-left: 15px;
}

.connection-indicator span:first-child {
    margin-right: 5px;
}

.connection-indicator .connected {
    color: #4CAF50;
    font-weight: bold;
}

.connection-indicator .disconnected {
    color: #F44336;
    font-weight: bold;
}

/* Status panel styling */
.status-panel {
    display: flex;
    flex-wrap: wrap;
    background-color: #2c3e50;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.status-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 15px;
    min-width: 120px;
}

.status-label {
    color: #95a5a6;
    font-size: 14px;
    margin-right: 8px;
}

.status-value {
    color: #ecf0f1;
    font-size: 16px;
    font-weight: bold;
}

.status-unit {
    color: #7f8c8d;
    font-size: 14px;
    margin-left: 3px;
}

/* Latency indicator styling */
.latency-label {
    margin-left: 15px;
    margin-right: 5px;
}

#socket-latency {
    font-weight: bold;
}

.good-latency {
    color: #4CAF50;
}

.medium-latency {
    color: #FFC107;
}

.poor-latency {
    color: #F44336;
} 