.breadcrumb-container {
    padding-top: 3px;
    padding-bottom: 3px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-left: 8px;
    animation: blink 1s infinite;
    color: orange;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.breadcrumb-news-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fefefe;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 0.2rem 0;
    font-size: large;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

/* حالت راست‌به‌چپ */
.marquee-wrapper .rtl {
    direction: rtl;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: scroll-marquee-rtl linear infinite;
}

.marquee-content li {
    display: inline-block;
    align-items: center;
    white-space: nowrap;
}

.marquee-content li a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

.marquee-content li a:hover {
    color: #fa7d45;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* انیمیشن پایه */
@keyframes scroll-marquee-rtl {
    0% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 768px) {
    .marquee-content li {
        margin-left: 0;
    }

    .marquee-content {
        gap: 1rem;
        animation-duration: 30s;
    }

    .breadcrumb-news-box {
        border-radius: 0;
        background-color: #fefefe;
        box-shadow: 0 0 0;
        overflow: hidden;
        padding: 0.2rem 0;
        font-size: medium;
    }
    .marquee-line{
        padding: 0;
    }
}
