.station-popup {
    padding: 10px;
    max-width: 300px;
    border-radius: 8px;
}

.station-popup h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
}

.station-status {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #000000;
}

.station-last-update {
    color: #666;
    font-size: 12px;
    margin-bottom: 15px;
}

.station-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    text-align: center;
}

.metric-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-icon {
    font-size: 20px;
    color: #4169E1;
    margin-bottom: 5px;
}

.metric-value {
    font-weight: bold;
    font-size: 14px;
}

.metric-label {
    font-size: 12px;
    color: #666;
}

.station-link {
    display: block;
    background-color: #4169E1;
    color: white !important;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.station-link:hover {
    background-color: #f0f0f0; 
    
    color: #4169E1 !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.dashboard-icon {
    margin-right: 5px;
}