/* Контейнер уведомлений */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999; /* очень высокий, выше большинства элементов на странице */
    pointer-events: none; /* чтобы клики проходили через уведомления */
}

/* Уведомления */
.notification {
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: auto; /* чтобы уведомление можно было закрывать, если добавишь кнопку */
}

/* Анимация появления */
.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Типы уведомлений */
.notification.success { background-color: #26c15f; }
.notification.error { background-color: #e74c3c; }
.notification.info { background-color: #3498db; }
