/* Notifications */
@keyframes boot-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

.notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background: var(--bg-medium);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 15px 20px;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.notification.show {
    right: 20px;
}

.notification-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.notification-message {
    color: var(--text);
    font-size: 0.85rem;
}
