.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: white;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1100;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background: #4CAF50;
    color: white;
}

.notification.error {
    background: #f44336;
    color: white;
}

.notification i {
    font-size: 1.2rem;
}

[data-theme="dark"] .notification {
    background: #333;
    color: white;
}
