img {
    max-width: 100%;
    max-height: 100%;
}
.imm {
    display: inline-block;
    cursor: pointer; /* Indica che l'immagine è cliccabile */
}

.imm img {
    width: 120px; /* Imposta la larghezza dell'immagine */
    height: auto; /* Mantiene le proporzioni dell'immagine */
    transition: transform 0.3s ease; /* Transizione fluida per l'effetto di zoom */
}

.overlay {
    display: none; /* Nascondi l'overlay inizialmente */
    position: fixed; /* Fissa l'overlay alla pagina */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Sfondo scuro semi-trasparente */
    justify-content: center; /* Centra orizzontalmente */
    align-items: center; /* Centra verticalmente */
    overflow-y: auto;
    
}
.overla a {
  padding: 8px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.overlay a {
    text-decoration: none;
    font-size: 100px; 
    position: absolute; 
    top: 0; 
    right: 20px; 
    color: #818181;
}

.overlay a:hover, .overlay a:focus{
    text-decoration: none;
    font-size: 100px; 
    position: absolute; 
    top: 0; 
    right: 20px; 
    color: #f1f1f1;
}

.overlay img {
    max-width: 100%; /* Imposta larghezza massima dell'immagine */
    max-height: 100%; /* Imposta altezza massima dell'immagine */

}

.zoomable {
  transition: transform 0.2s ease-in-out;
}

.zoomable:hover {
  transform: scale(1.1); /* Leggero ingrandimento */
}

.slider {
    position: relative;
    width: 600px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.arrow {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.overla {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overla-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}


.overla a:hover, .overla a:focus {
  color: #f1f1f1;
}

.overla .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overla a {font-size: 20px}
  .overla .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.fixed-table {
  width: 100%;
  table-layout: fixed; 
  border-collapse: collapse;
}

.left, .right {
  width: 20%; 
  background-color: #F4F4F4;
}

.sticky-content {
  position: sticky; 
  top: 0;
  background-color: #F4F4F4; 
  padding: 10px;
}

.center {
  overflow-y: auto;

}
.scrollable-content {
  max-height: none; 
}
.jumbotron
{
  background-color: #f4f4f4;
}
