.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    background: rgba(28, 30, 40, 0.95);
    border: 1px solid rgba(139, 127, 219, 0.3);
    color: white;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(139, 127, 219, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: rgba(0, 255, 128, 0.3);
}

.notification.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
