.container-album {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
  }
  #controls-album{
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  
  .carousel-album {
    width: 93%;
    display: grid;
    grid-auto-flow: column;
    overflow-x: scroll; /* Use overflow-x to enable horizontal scrolling */
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar */
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    transition: transform 0.8s ease;
  }
  
  .carousel-album::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
  }
  
  #grid-album{
    margin:0  15px;
    width: 350px;
    height: auto;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .album-img{
    border-radius:25px ;
  }

  .index-bar-album {
    margin-top: 0;
    display: flex;
    justify-content: center;
  }
  
  .indicator-album {
    width: 3rem;
    height: 10px;
    background-color: #00f4f7;
    border-radius: 25px;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .active {
    background-color: #008486;
  }
  
  .btn-slide{
    border-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 2em;
    font-weight: 600;
    background-color: #008486;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }