/**
 * NOTIFICATIONS MODULE: Styles
 */
.notifications-container { position: fixed; bottom: 20px; right: 20px; z-index: 10001; }
.notification { background: white; padding: 15px 20px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); margin-bottom: 10px; }
.notification-success { border-left: 4px solid var(--success-color); }
.notification-error { border-left: 4px solid var(--danger-color); }
