.wbs-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.wbs-slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.wbs-slide {
    flex: 0 0 100%;
    position: relative;
}

.wbs-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.wbs-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.wbs-prev,
.wbs-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background 0.3s;
}

.wbs-prev:hover,
.wbs-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.wbs-slider-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.wbs-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.wbs-bullet.active {
    background: white;
} 