.url-gallery {
    background-color: #fff0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.url-gallery-img {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
}

.url-gallery-advance {
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    background-color: #fff0;
    width: 10%;
    height: auto;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.url-gallery-advance:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    opacity: 0.8;
}

.url-gallery-advance:active {
    transform: scale(0.95);
}

.url-gallery-left::before {
  content: '‹';
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.url-gallery-right::after {
  content: '›';
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}