.ticker-wrapper-f865240c {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 10px;
}

.ticker-container-f865240c {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex; /* Centering helper */
    align-items: center; /* Centering helper */
}

.ticker-track-f865240c {
    display: flex;
    align-items: center; /* Critical for vertical centering */
    transition-property: transform;
    transition-timing-function: ease-in-out;
    width: 100%;
}

.ticker-item-f865240c {
    flex: 0 0 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex; /* Critical for vertical centering of inner text */
    justify-content: center;
    align-items: center;
}

.ticker-nav-btn-f865240c {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px 10px;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-nav-btn-f865240c:hover {
    opacity: 0.7;
}