/* QR Modal Styles */
.qr-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.qr-image:hover {
    transform: scale(1.05);
}

.qr-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.qr-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

.qr-modal-close:hover {
    color: #0F132E;
}

.qr-modal-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    margin: 20px 0;
}

.qr-modal-text {
    color: #6B7280;
    font-size: 0.9rem;
    margin: 0;
}
