/* General styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2F2F2;
    color: #194505;
}

.site-dalsi-zarizeni {
    padding: 20px;
}








/* Media queries for responsiveness */
@media (max-width: 992px) {
    .card {
        flex-basis: 45%;
    }
}



.site-galerie {
    margin-top: 50px; /* Adjust this value to suit your layout */
}

.gallery-title {
    text-align: center;
    margin-bottom: 20px;
}

.thumbnail {
    position: relative;
    overflow: hidden;
}

.thumbnail img {
    /*transition: transform 0.2s ease-in-out; */
    max-width: 200px; /* Ensures the image does not exceed its container's width */
    height: auto; /* Maintains the aspect ratio */
    display: block; /* Removes the bottom margin in some browsers */
    margin: 0 auto; /* Center the image horizontally */
}

.thumbnail:hover img {
    /*transform: scale(1.05);*/
} 

.caption {
    text-align: center;
    padding: 10px;
}
