/* Station Marker Styles */
.station-marker-container {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.station-marker-container:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.station-marker-container img {
    display: block;
}

.station-popup-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.station-popup-header-address span {
    font-size: 14px;
}

.station-popup-header-address {
    font-weight: 400;
}

/* Station Popup Styles */
.station-popup {
    min-width: 250px;
    font-family: 'Wix Madefor Text', sans-serif;
}

.station-popup h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-popup p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
}

.station-metrics {
    margin: 8px 0;
}

.metric-row {
    padding: 2px 0;
}

.metric-label {
    font-weight: 500;
    color: #555;
    font-size: 14px;
    padding-right: 8px;
}

.metric-value {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.last-updated {
    margin-top: 8px;
    padding-top: 8px;
    color: #888;
    font-size: 12px;
    font-style: italic;
}

.station-popup-detail-link-wrap {
    text-align: right;
    margin-top: 8px;
}

.station-popup-detail-link:hover {
    color: #4B299A;
    text-decoration: underline;

}