body {
    background-color: #f5f5f5;
}

.navbar-brand {
    font-weight: 700;
}

.card {
    border-radius: 1rem;
}

.price-badge {
    font-size: 1.1rem;
    font-weight: 600;
}

.top-row {
    background-color: #e8f9e9;
}

.auth-card {
    border-radius: .75rem;
}

.auth-toggle .btn {
    min-width: 130px;
}
.region-map {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: .5rem;
    margin-top: .5rem;
}

.region-tile {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: .5rem .75rem;
    background: #f8f9fb;
    cursor: pointer;
    font-size: .9rem;
    text-align: center;
    transition: background .15s, transform .1s, box-shadow .15s;
}

.region-tile:hover {
    background: #e4ebff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.region-tile.selected {
    background: #2a5bff;
    color: #fff;
    border-color: #2a5bff;
}
/* základní velikost loga – desktop i mobil */
.navbar-logo {
    max-height: 100px;   /* tady si klidně hraj, 28–40px bývá fajn */
    max-width: 100px;
    height: auto;
    width: auto;
    display: inline-block;
}

/* zarovnání textu s logem */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* na opravdu malých displejích logo ještě o fous zmenšíme */
@media (max-width: 576px) {
    .navbar-logo {
        max-height: 70px;
        max-width: 70px;
    }
}
.chart-wrapper {
    position: relative;
    height: 400px;   /* můžeš si upravit */
}
/* Fix pro Leaflet mapu – tiles nesmí být responsivní obrázky */
.leaflet-container img {
    max-width: none !important;
    max-height: none !important;
}
.map-wrapper {
    position: relative;
    height: 500px;   /* klidně uprav výšku */
}

#stations-map {
    width: 100%;
    height: 100%;
}
