body {
    margin:0;
    font-family:Arial;
    background:#111;
    color:#fff;
}

header {
    background:#000;
    padding:15px;
    text-align:center;
    border-bottom:3px solid #ffcc00;
}

.search-bar {
    display:flex;
    gap:10px;
    padding:15px;
    justify-content:center;
    flex-wrap:wrap;
    background:#1a1a1a;
}

.search-bar input {
    padding:8px;
    width:180px;
}

.search-bar button {
    padding:8px 15px;
    background:#ffcc00;
    border:none;
    cursor:pointer;
}

.station-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:20px;
}

.station-card {
    background:#1e1e1e;
    padding:15px;
    border-radius:8px;
    text-align:center;
}

.station-card img {
    width:120px;
    height:120px;
    object-fit:contain;
}

.btn {
    display:inline-block;
    margin-top:10px;
    padding:8px 15px;
    background:#ffcc00;
    color:#000;
    text-decoration:none;
    font-weight:bold;
}

.pagination {
    text-align:center;
    padding:20px;
}
