.mobile-pdf-viewer-page {
    padding: 0;
}

.mobile-pdf-toolbar {
    position: sticky;
    top: 0;
    z-index: 100;

    padding: 12px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    background: #ffffff;

    border-bottom: 1px solid var(--mobile-border);

    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.mobile-pdf-button {
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 14px;

    background: var(--mobile-primary);

    color: #fff;

    font-size: .75rem;
    font-weight: 700;
}

.mobile-pdf-container {
    width: 100%;
    height: calc(100vh - 80px);
}

.mobile-pdf-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

@media (max-width: 480px) {

    .mobile-pdf-button span {
        display: none;
    }

    .mobile-pdf-toolbar {
        grid-template-columns: repeat(3, 56px);
        justify-content: center;
    }
}
