.notification-banner {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(to right, #f8f9fa, #fff);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    position: relative;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.notification-banner.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.notification-text {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.notification-date {
    color: #666;
    font-size: 0.85rem;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    white-space: nowrap;
}

.notification-close {
    cursor: pointer;
    padding: 4px 8px;
    font-size: 1.2em;
    color: #666;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Status variants */
.notification-banner.info {
    background: linear-gradient(to right, #e8f4fd, #f8fbfe);
    border-color: #bee3f8;
}

.notification-banner.warning {
    background: linear-gradient(to right, #fff3cd, #fff9e6);
    border-color: #ffeeba;
}

.notification-banner.error {
    background: linear-gradient(to right, #fed7d7, #fff5f5);
    border-color: #feb2b2;
} 