/* Main ticker container (LTR for predictable scrollLeft) */
.ticker {
    margin-top: -23px;
    margin-bottom: 11px;
    width: 100%;
    overflow: hidden;
    direction: ltr; /* VERY IMPORTANT */
    white-space: nowrap;
    border: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: var(--main-color);
    color: #fff;
}

/* Track containing items */
.track {
    display: inline-flex;
    white-space: nowrap;
}

/* Each Arabic item */
.item {
    direction: rtl;
    text-align: right;
    padding: 10px 40px;
    font-size: 1.3rem;
    white-space: nowrap;
}
