/* Modern Live Update Bar */
.live-bar-container {
    background: #0f172a; /* Dark Blue-Black */
    color: #ffffff;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid #3b82f6;
    z-index: 1001;
}

.live-label {
    background: #ef4444;
    color: white;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
}

.live-label::after {
    content: "";
    position: absolute;
    right: -10px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid #ef4444;
}

.scrolling-content {
    white-space: nowrap;
    display: flex;
    align-items: center;
    animation: smoothScroll 25s linear infinite;
    padding-left: 100%;
}

.scrolling-content:hover {
    animation-play-state: paused; /* युजरने माऊस नेला तर पट्टी थांबेल */
}

.update-item {
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #e2e8f0;
}

.highlight-status {
    color: #fbbf24; /* Yellow color for Holiday status */
    font-weight: 700;
}

@keyframes smoothScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* मोबाईलसाठी फॉन्ट ॲडजस्टमेंट */
@media (max-width: 600px) {
    .update-item { font-size: 0.8rem; padding: 0 20px; }
}