.notification{position:fixed;bottom:24px;right:24px;padding:12px 20px;border-radius:30px;font-size:14px;z-index:9999;animation:slideInRight .3s ease-out forwards;max-width:300px;box-shadow:0 2px 8px rgba(0,0,0,.15);transform:translateX(100%);display:flex;align-items:center;gap:8px}.notification__icon{flex-shrink:0;color:#fff}.notification__message{color:#fff}.notification--error{background-color:#ff2c2c}.notification--success{background-color:#4bb543}.notification--warning{background-color:orange}.notification--warning .notification__icon,.notification--warning .notification__message{color:#000}@keyframes slideInRight{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}