/* 📢 Industrial Notification Bar Styles */
.apex-notification-bar {
    position: relative;
    width: 100%;
    z-index: 1050;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.apex-notification-bar a {
    color: inherit;
    text-decoration: underline;
    margin-left: 10px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.apex-notification-bar a:hover {
    opacity: 1;
}

.notif-close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
    font-size: 1.2rem;
    line-height: 1;
}

.notif-close-btn:hover {
    opacity: 1;
}

/* 🌀 Industrial Marquee Animation Node */
.notif-marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.notif-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.notif-marquee:hover span {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Fix for mobile discovery */
@media (max-width: 768px) {
    .apex-notification-bar {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
}
