/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 18px;
    background-color: rgba(17, 17, 32, 0.95);
    border: 1px solid rgba(123, 47, 255, 0.2);
    color: var(--text-color);
    border-radius: 8px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.notification.fade-out {
    opacity: 0;
}