/* Фиксированная кнопка в правом нижнем углу */
.qr-code-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Стили для модального окна */
.qr-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.qr-modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.qr-modal-content h2 {
    margin-top: 0;
    color: #1a2526; /* Фиксированный цвет заголовка */
}

.qr-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.qr-modal-close:hover,
.qr-modal-close:focus {
    color: #000;
    text-decoration: none;
}

/* Центрирование QR-кода */
.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.qr-code-container canvas {
    display: block;
}

/* Стили для кнопок "Сохранить" и "Скопировать" */
.qr-modal-buttons {
    margin-top: 20px;
}

.qr-modal-buttons .ipsButton {
    background-color: var(--i-primary-button--ba-co);
    color: #ffffff;
}

.qr-modal-buttons .ipsButton:hover {
    background-color: #0f2557;
}

/* Стили для блока "Поделиться" */
.qr-share-block {
    margin-top: 20px;
}

.qr-share-block h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #1a2526;
}

.custom-share {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff; /* Белый фон */
    border: 2px solid var(--i-primary-button--ba-co); /* Граница цвета #14316b */
    border-radius: 50%;
    text-decoration: none;
}

.share-button:hover {
    background-color: #14316b; /* Цвет фона при наведении */
}

.share-button:hover .share-icon {
    fill: #ffffff; /* Белый цвет иконки при наведении */
}

.share-icon {
    width: 24px;
    height: 24px;
    fill: #14316b; /* Цвет иконок */
}