.wcs-wrapper-a43ef699 {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 15px;
    background: transparent;
    user-select: none;
}

.wcs-scroll-container {
    flex-grow: 1;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-behavior: smooth;
    position: relative;
}

.wcs-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.wcs-tabs-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
}

.wcs-tab-link {
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 18px;
    color: #333;
    background-color: #f9f9f9;
}

.wcs-tab-link:hover {
    opacity: 0.85;
}

.wcs-tab-link.is-active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.wcs-arrows-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.wcs-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.wcs-arrow-btn:hover {
    background-color: #f0f0f0;
}

.wcs-arrow-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}
