/* Sample certificate PDF viewer (partnership-firm-registration) */
.pdf-viewer-wrap {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

.pdf-viewer-wrap .pdf-frame {
    position: absolute;
    top: -56px;
    left: 0;
    width: 100%;
    height: calc(100% + 56px);
    border: 0;
    display: block;
}

.cert-download-btn {
    display: none;
}

/* Dark mode */
body.dark-mode .pdf-viewer-wrap {
    border-color: #33343d;
}

/* Mobile: shrink viewer + expose a download button */
@media screen and (max-width: 767px) {
    .pdf-viewer-wrap {
        display: none;
    }

    .cert-download-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        padding: 11px 24px;
        border-radius: 6px;
        background-image: linear-gradient(to top, #32d314, #33e312);
        color: #fff !important;
        font-family: Roboto, sans-serif !important;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        box-shadow: 0 5px 8px 0 rgb(50 211 20 / .36);
        transition: 0.3s;
    }

    .cert-download-btn:hover {
        color: #fff !important;
        box-shadow: 0 14px 27px 0 rgb(50 211 20 / .43);
    }
}
