

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.swiper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 90%;
}

.swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    /*border: 1px solid #f7f7f7;*/
    border:none;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.details {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 10px;
    border-radius: 12px 12px 0 0;
    background-color: white;
}

.details h3 {
    font-size: 12px;
    font-weight: bold;
}

.details p {
    background-color: #0080ff;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 12px;
    color: white;
}

.details button {
    border: 1px solid black;
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.details button:hover {
    opacity: 0.85;
}

#prev-button:after,
#next-button:after {
    color: #c2c0c0;
    font-size: 30px;
}
