#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.notification {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    background: rgba(20, 20, 30, 0.9);
    border-left: 4px solid #6c63ff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* Animation removed to reduce CPU usage */
    right: 20px;
    backdrop-filter: blur(5px);
}

.notification.success {
    border-left-color: #00e676;
}

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

.notification.info {
    border-left-color: #6c63ff;
}

.notification-icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

.notification.success .notification-icon {
    color: #00e676;
}

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

.notification.info .notification-icon {
    color: #6c63ff;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.notification-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-left: 10px;
    /* Transition removed to reduce CPU usage */
}

.notification-close:hover {
    color: rgba(255, 255, 255, 0.8);
}

.notification.removing {
    right: -300px;
    opacity: 0;
}
