/* =====================================================
   QR CODE DISPLAY PAGE STYLES
   ===================================================== */

.qr-display-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 2rem;
}

.qr-display-container {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: slideUp 0.5s ease-out;
}

.qr-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gray-200);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.qr-close-btn:hover {
    background: var(--error);
    color: var(--white);
    transform: rotate(90deg);
}

.qr-display-content {
    text-align: center;
}

.qr-display-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.qr-display-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
}

.qr-display-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.qr-code-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 3px solid var(--primary-blue);
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.qr-code-box canvas {
    display: block;
}

.qr-display-instructions {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    margin-bottom: 2rem;
}

.qr-display-instructions h3 {
    color: var(--primary-blue-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.qr-display-instructions ol {
    margin-left: 1.5rem;
    color: var(--gray-700);
}

.qr-display-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.qr-download-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-family);
}

.qr-download-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .qr-display-page {
        padding: 1rem;
    }
    
    .qr-display-container {
        padding: 2rem 1.5rem;
    }
    
    .qr-display-title {
        font-size: 1.5rem;
    }
    
    .qr-code-box {
        padding: 1rem;
    }
    
    .qr-code-box canvas {
        width: 200px !important;
        height: 200px !important;
    }
}