/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    background-color: rgba(10, 10, 15, 0.9);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 4px;
    z-index: 1000;
    box-shadow: var(--glow-effect);
    opacity: 1;
    transition: opacity 0.5s ease;
}

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