.stations-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.stations-toolbar h1 { margin: 0; font-size: 2rem; }
.stations-toolbar .chip { margin-left: auto; }
.stations-timestamp { margin-bottom: 32px; }
.stations-nav { margin-bottom: 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.stations-nav-label { font-weight: 700; }
.stations-search { margin-bottom: 24px; }
.stations-search label { display: block; font-weight: 600; margin-bottom: 8px; }
.stations-search input { max-width: 500px; }
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.stations-hint { margin-top: 24px; text-align: center; }
.stations-load-more { text-align: center; margin: 24px 0; }
.stations-page { padding-top: 40px; padding-bottom: 60px; }
.stations-error { color: #ef4444; font-weight: 600; }

.station-card {
    background: var(--card);
    border: 1px solid #00000014;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 12px 32px #00000018;
    transition: all 0.2s ease;
    overflow: hidden;
}
.station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px #00000028;
}
.station-card-header {
    background: linear-gradient(135deg, #2b8bfd 0%, #00c6ff 100%);
    color: white;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.station-card-header h3 { margin: 0; font-size: 1.1rem; font-weight: 700; }
.station-dept {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.station-card-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.station-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #00000008;
}
.station-stat:last-child { border-bottom: none; }
.stat-label { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.stat-value { font-weight: 700; font-size: 0.95rem; }
.stat-value.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9rem;
}
.station-card-footer {
    padding: 14px 18px;
    background: #00000005;
    border-top: 1px solid #00000008;
}
.dark .station-card-footer { background: #ffffff08; }
.station-card-footer .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
    .stations-grid { grid-template-columns: 1fr; }
}
