/* notifications.css */

#notifications {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 12px 16px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

/* Цвета по типам */
.notification-success { background: #38a169; }
.notification-error { background: #e53e3e; }
.notification-warning { background: #d69e2e; }
.notification-info { background: #3182ce; }

/* Анимация появления */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
