html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

/*html {
  position: relative;
  min-height: 100%;
}*/

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Ustaw układ pionowy */
}
p {
    margin-top: 0.25rem; /* Zmniejsz górny margines */
    margin-bottom: 0.25rem; /* Zmniejsz dolny margines */
}
body {
    padding-bottom: 60px;
}
footer {
    position: fixed !important;
    bottom: 0;
    width: 100%; /* Dopasowanie do szerokości ekranu */
    height: 60px; /* Wysokość stopki */
    z-index: 1000; /* Zapewnia, że stopka jest nad innymi elementami */
    align-items: center;
    display: flex;
}
main {
    flex: 1; /* Zapewnia elastyczność dla głównej treści */
    /*max-height: calc(100vh - 56px - 60px);*/
    display: flex;
    flex-direction: row;
    padding-bottom: 60px;
}
.container {
    flex: 1;
}

#map {
    flex: 1;
    height: 100%;
    width: 100%;
}




.main-map {
    padding: 0;
    margin: 0;
    height: 100vh; /* Wysokość całego okna */
    display: flex;
    flex-direction: column;
}

.main-map .container-fluid {
    padding: 0;
    margin: 0;
    height: 100%; /* Zajmij całą przestrzeń */
}



.img-thumbnail {
    object-fit: cover;
    width: 100%;
    height: 100px; /* Wysokość miniaturki */
    border-radius: 10px; /* Zaokrąglone rogi */
}