.notification-bar {
    background: #1a202c;
    color: white;
    padding: 4px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.marquee-item a {
    display: inline-flex;
    align-items: center;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

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

.marquee-button {
    display: inline-block;
    padding: 2px 12px;
    margin-left: 8px;
    background: #3b82f6;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.marquee-button:hover {
    background: #2563eb;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 15px;
    z-index: 10;
}
