/* NOTIFICATION MODULE */
.notification-container {
    position: fixed;
    z-index: 9999;
    max-width: 350px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Позиционирование */
.notification-top-right {
    top: 20px;
    right: 20px;
}

.notification-top-left {
    top: 20px;
    left: 20px;
}

.notification-bottom-right {
    bottom: 20px;
    right: 20px;
}

.notification-bottom-left {
    bottom: 20px;
    left: 20px;
}

.notification-item {
    position: relative;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-item.show {
    transform: translateX(0);
    opacity: 1;
}

/* Типы сообщений */
.notification-success {
    background: #4CAF50;
}

.notification-error {
    background: #f44336;
}

.notification-warning {
    background: #ff9800;
}

.notification-info {
    background: #2196F3;
}

/* Иконки */
.notification-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

/* Анимация исчезновения */
.notification-item.hide {
    transform: translateX(120%);
    opacity: 0;
}
