/* Marquee Notification Styles */
.marquee-container {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

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

.notification-text {
    font-size: 16px;
    color: #212529;
    display: flex;
    align-items: center;
}

.notification-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #ff6b6b;
}

.notification-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 8px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.notification-link:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-text {
        font-size: 14px;
    }
    
    .marquee-content {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .notification-text {
        font-size: 12px;
    }
    
    .marquee-content {
        animation-duration: 15s;
    }
}