.app-qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.app-qr-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.app-qr-modal__content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.app-qr-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.app-qr-modal__close:hover {
    color: #000;
}

.app-qr-modal__title {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 24px;
    color: #333;
}

.app-qr-modal__qr-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-qr-modal__qr-item {
    text-align: center;
}

.app-qr-modal__qr-item h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
}

.app-qr-modal__qr-item img {
    display: block;
    margin: 0 auto 15px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
}

.app-qr-modal__qr-item p {
    margin: 0;
    font-size: 14px;
}

.app-qr-modal__qr-item a {
    color: #0066cc;
    text-decoration: none;
}

.app-qr-modal__qr-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .app-qr-modal__content {
        padding: 30px 20px;
    }
    
    .app-qr-modal__qr-container {
        gap: 30px;
    }
    
    .app-qr-modal__qr-item img {
        width: 150px;
        height: 150px;
    }
}

