 /* Контейнер для уведомлений */
    #notification-container {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        max-width: 300px; /* Ограничение ширины */
    }

    /* Стиль уведомлений */
    .notification {
        background: #28a745; /* Зеленый цвет, как в банковских уведомлениях */
        color: #fff; /* Белый текст */
        border-radius: 8px; /* Скругленные углы */
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Глубокая тень для объема */
        font-family: Arial, sans-serif;
        font-size: 14px;
        margin-bottom: 10px;
        animation: fadeIn 0.4s ease-in-out;
    }

    /* Галочка */
    .notification .checkmark {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #28a745;
        font-size: 16px;
        margin-right: 12px;
        font-weight: bold;
    }

    /* Текст уведомления */
    .notification .text {
        flex-grow: 1;
        text-align: left;
    }

    /* Анимация появления уведомления */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Анимация исчезновения уведомления */
    @keyframes fadeOut {
        from { opacity: 1; transform: translateY(0); }
        to { opacity: 0; transform: translateY(-20px); }
    }

    /* Медиазапрос для мобильных устройств */
    @media (max-width: 600px) {
        .notification {
            max-width: 260px; /* Меньшая ширина для мобильных устройств */
            font-size: 12px; /* Уменьшение шрифта для мобильных */
            padding: 10px; /* Меньше отступов */
        }

        .notification .checkmark {
            width: 20px; /* Меньше размер галочки */
            height: 20px; /* Меньше размер галочки */
            font-size: 14px; /* Меньше шрифт в галочке */
        }
    }