.hthb-row {
    padding: 0 !important; /** require for making hashbar full width **/
}

.hthb-container {
	max-width: max-content !important; /** require for making hashbar full width **/
}

.hthb-notification-content-wrapper {
    width: 100%;
    overflow: hidden;
    background: #ff0000;
    padding: 10px 0;
    box-sizing: border-box;
}

.hthb-marquee-track {
    display: flex;
    width: max-content; /* Ensures total content width adapts */
    animation: marquee-animation 35s linear infinite;
}

.hthb-marquee-content {
    display: flex;
    white-space: nowrap;
}

.hthb-marquee-content span {
    display: inline-block;
    margin-right: 140px; /* Adjust spacing between messages */
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.hthb-notification-content-wrapper:hover .hthb-marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 575.98px) {
    .hthb-marquee-content span {
        margin-right: 50px; /* Increase spacing on mobile */
        font-size: 14px; /* Optional: slightly smaller font for mobile */
    }
}
