/* Notification system - Toast notifications and alerts */
/* Requires: shared-animations.css for slideIn animation */

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.info {
    background: var(--primary);
    color: white;
}

.notification.success {
    background: #22c55e;
    color: white;
}

.notification.error {
    background: #ef4444;
    color: white;
}
