#notificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 400px;
}

.notification-banner {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-banner.visible {
    transform: translateX(0);
    opacity: 1;
}

.notification-banner.hiding {
    transform: translateX(calc(100% + 40px));
    opacity: 0;
}

.notification-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    color: #fafafa;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    word-wrap: break-word;
}

.notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: #71717a;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background 0.15s;
}

.notification-close:hover {
    color: #fafafa;
    background: rgba(255, 255, 255, 0.1);
}

.notification-info {
    border-left-color: #3b82f6;
}

.notification-info .notification-icon {
    color: #3b82f6;
}

.notification-success {
    border-left-color: #22c55e;
}

.notification-success .notification-icon {
    color: #22c55e;
}

.notification-warning {
    border-left-color: #f59e0b;
}

.notification-warning .notification-icon {
    color: #f59e0b;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}
