/* Scroll Box Container */
.jx-scroll-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    padding: 10px;
    user-select: none;
    -webkit-user-select: none;
}

/* Content Wrapper */
.jx-scroll-content {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
}

/* Vertical Scrolling */
.jx-scroll-box[data-direction="up"] .jx-scroll-content,
.jx-scroll-box[data-direction="down"] .jx-scroll-content {
    white-space: normal;
    display: flex;
    flex-direction: column;
}
