.swiper-button-next, .swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    border-radius: 10px;
}

#single-spot-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#single-spot-container .swiper {
    width: clamp(350px, 100%, 800px);
}

#single-spot-container video {
    width: clamp(350px, 100%, 800px);
}

/* Share button styles */
#spot-share-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

.share-button {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #333333;
}

