/* ═══════════════════════════════════════════════════
   STYLES POUR LE VISIONNEUR PDF
   ═══════════════════════════════════════════════════ */

.pdf-viewer-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.pdf-viewer-frame {
    width: 100%;
    height: 80vh;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    background-color: var(--c-surface2);
}

.pdf-fallback-content {
    padding: 3rem;
    text-align: center;
    background-color: var(--c-surface);
    border: 1px dashed var(--c-border-hi);
    border-radius: var(--r-md);
}

.pdf-fallback-content h2 {
    color: var(--c-text);
    margin-bottom: 1rem;
}

.pdf-fallback-content p {
    color: var(--c-text-2);
    margin-bottom: 2rem;
}

.btn-download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--g-btn);
    color: white;
    text-decoration: none;
    border-radius: var(--r-sm);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

@media (max-width: 768px) {
    .pdf-viewer-frame {
        height: 60vh;
    }
}
