/* public/assets/css/style.css */
body {
    background-color: #f1f3f5;
    font-family: 'Roboto', sans-serif;
}
.top-bar {
    background-color: #343a40;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 1rem;
}
.navbar-brand {
    font-weight: 700;
}
header, footer {
    background-color: #212529;
    color: #fff;
    padding: 1rem 0;
}
header h1, footer p {
    margin: 0; 
    text-align: center;
}
.container {
    max-width: 1200px;
}
/* Kontener miniaturki – miniaturka w tabeli */
.thumbnail {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

/* Obrazek w miniaturce */
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* Popup do powiększonego zdjęcia */
#zoomPopup {
  display: none;
  position: absolute;
  z-index: 10000;
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#zoomPopup img {
  width: 300px; /* Rozmiar powiększonego obrazka – możesz dostosować */
  height: auto;
  display: block;
}

