    /* Estilos del contenedor de las miniaturas */
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 4px;
        transition: all 0.5s ease-out;
      }
  
      /* Estilos de las miniaturas */
      .thumbnail {
        width: 75px;
        height: 75px;
        margin: 1px;
        cursor: pointer;

        border: 2px solid #fff;
        border-radius: 8%;
        border-color: whitesmoke;
        transition: all 0.5s ease-out;
      }

      .thumbnail:hover{
        border: 2px solid orange;
        filter:alpha(opacity=80);
        -moz-opacity:0.8;
        opacity: 0.8;
      }
  
      /* Estilos del elemento modal */
      .modal {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
     
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        /* Añadir display: flex, justify-content: center y align-items: center para centrar la imagen */
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-direction: row;
      }
  
      /*
      .modal{
        z-index: 1;
      }
     */
   /*
      .modal::after{
        content: '';
        position:fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.56);
        z-index: 0;
      }*/
  
      /* Estilos del botón de cierre */
      .close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        font-size: 40px;
        color: white;
        text-align: center;
        cursor: pointer;
      }
  
      /* Estilos de la imagen del modal */
      .modal-image {
        display: block;
        max-width: 90%;
        max-height: 90%;
        margin: 10px auto;
        /* Añadir object-fit: contain para que la imagen se ajuste al espacio disponible */
        object-fit: contain;
  border-style: solid;
  border-image: 100em auto;

        border-radius: 3%;
        border: 10px solid, rgb(255, 132, 0);
        box-sizing: border-box; 
      }