.ticker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: none; /* Remove border */
    background-color:rgba(0, 0, 0, 0.6); /* Background color with low opacity */
    color: #fff; /* Text color */
    border-radius: 5px;
    margin-right: 10px;
    min-width: 300px; /* Increase minimum width to fit content better */
    height: auto; /* Adjust height based on content */
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
}

.ticker-item span {
    margin-right: 10px; /* Adjust spacing between items */
    font-size: 14px; /* Adjust font size if needed */
    font-weight: bold;
}

.reuters {
    flex-grow: 1; /* Allow span to grow */
    text-align: left;
}

.change {
    flex-grow: 1; /* Allow span to grow */
    text-align: center;
    display: flex;
    align-items: center;
}

.change i {
    margin-right: 5px; /* Space between icon and text */
}

.change.positive {
    color: #28a745; /* Green color for positive change */
}

.change.negative {
    color: #dc3545; /* Red color for negative change */
}

.trade-price {
    flex-grow: 1; /* Allow span to grow */
    text-align: right;
}

.ticker-data {
    display: flex;
    flex-wrap: nowrap; /* Prevent items from wrapping */
    overflow: hidden; /* Hide overflow */
}
