* {
    padding: 0;
    margin: 0;
}

.side-padding {
    padding-left: 5%;
    padding-right: 5%;
}

.gallery-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}

.tabs {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow: scroll;
      width: 100%;
    }

    .tab {
      padding: 10px 20px;
      background-color: #eee;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.4rem;
    }

    .tab.active {
      background-color: #333;
      color: #fff;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 2em;
    }

    .actions button {
      background-color: transparent;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .gallery {
      column-count: 5;
      column-gap: 10px;
      padding-top: 20px;
      border-top: 1px solid #ccc;
      min-height: 100vh;
    }

    .gallery-item {
      width: 100%;
      max-width: 400px;
      margin-bottom: 10px;
      display: none;
      break-inside: avoid;
      overflow: hidden;
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .gallery-item.show {
      display: block;
    }

    /*Assets*/
.image-wrapper {
    position: relative;
    display: block;
}

.download-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-wrapper:hover .download-icon {
    opacity: 1;
}


    /* Responsive column counts */
    @media (max-width: 1200px) {
      .gallery {
        column-count: 4;
      }
    }

    @media (max-width: 900px) {
      .gallery {
        column-count: 3;
      }



    }

    @media (max-width: 600px) {
      .gallery {
        column-count: 2;
      }

      .timer {
        gap: 1em;
      }
    }