
.galeria-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff8dc; /* Tonalidad de girasol */
    padding: 20px;
    min-height: 100vh;
  }
  

  .buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .icon-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
  }
  
  .icon-button:hover {
    background-color: #ffdd73; /* Un color más oscuro de girasol */
    border-radius: 5px;
  }

  .iconSVG{
    width: 20px;
  }

  .iconSVG2{
    width: 20px;
  }

  .photo-buttons {
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    border: solid 1px black;
    background-color: #ffd700;
  }

  @media (max-width: 768px) and (orientation: portrait) {
    .iconSVG2{
      max-width: 13%; /* Reduce la imagen al 50% de su tamaño original */
  height: auto; /* Mantiene la proporción */
    }
    .photo-buttons {

      width: 100%;
      display: flex;
      justify-content: space-around;
      border: solid 1px black;
      background-color: #ffd700;
    }

    .icon-button {
      background-color: black;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0px;
    }
    
    .icon-button:hover {
      background-color: #ffdd73; /* Un color más oscuro de girasol */
      border-radius: 5px;
    }
  }
  
  
  .gallery-wrapper {
    display: flex;
    justify-content: center;
    /* width: 100%; */
    margin-left: 10%;
  }
  
  .photo-container {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 0px;
    cursor: pointer;
  }
  
  .photo-container.selected {
    border: 1px solid #ffd700; /* Borde dorado */
    box-shadow: 0 0 10px 5px rgba(255, 215, 0, 0.8); /* Resplandor dorado */
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
    animation: glowing 1.5s infinite alternate;
  }
  
  @keyframes glowing {
    0% {
      box-shadow: 0 0 10px 3px rgba(255, 215, 0, 0.6);
    }
    100% {
      box-shadow: 0 0 20px 7px rgba(255, 215, 0, 1);
    }
  }
  
  .download-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
  }

  


  @media (max-width: 768px) and (orientation: portrait) {
    .photo-container img {
      width: 100%; /* Ajustar el tamaño de las imágenes en orientación vertical */
      height: auto;
    }
    .gallery-wrapper {
        margin-left: 0%;
      }
  }

  .floating-download-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }

  .floating-view-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ffee00;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  
  .floating-download-button:hover {
    background-color: #0056b3;
  }
  
  .fotoimg {
    border: solid 2px black;
  }

  .pagination-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
   
  }

  .download-all-button {
    background-color: #c6c9da;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease-in-out;
  }
  .botondownloadall {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
   margin-bottom: 0px;
  display: flex;
  justify-content: center;
  gap: 15px;
  }


  .videos-container{
    
  }

  .video-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .video-element{
    width: 100%;
  }
