:root {
    --pp-ink: #0f1b2d;
    --pp-text: #33455b;
    --pp-muted: #7a8997;
    --pp-line: #dce2e5;
    --pp-soft: #f4f6f3;
    --pp-blue: #2b68c8;
    --pp-teal: #0e7c7b;
    --pp-green: #20a861;
    --pp-red: #ed4d57;
    --pp-amber: #d69118;
}

.pp-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px 48px;
    color: var(--pp-ink);
}

.pp-bread {
    padding: 12px 0;
    color: #687680;
    font-size: 13px;
}

.pp-bread a {
    color: #246bc0;
}

.pp-bread .fa {
    color: #c8763a;
    margin-right: 4px;
}

.pp-title {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 6px 0 8px;
}

.pp-title h1 {
    font-size: 28px;
    font-weight: normal;
    margin: 0;
}

.pp-title .code {
    font-size: 14px;
    color: #9aa3aa;
}

.pp-title .identity {
    font-size: 13px;
    color: #7d8790;
}

.pp-title .identity strong {
    color: #2368c9;
    letter-spacing: .7px;
    font-family: Consolas,monospace;
}

.pp-title .version {
    display: inline-block;
    margin-left: 4px;
    padding: 0 4px;
    border: 1px solid #dce2e7;
    border-radius: 3px;
    color: #a1a9b0;
    font: 9px/15px Consolas,monospace;
    vertical-align: 1px;
}

.pp-desc {
    max-width: 1180px;
    color: #556575;
    line-height: 1.75;
    margin: 0 0 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e7eaec;
}

.pp-tab-bar {
    display: flex;
    border-bottom: 1px solid #dcdfe3;
    margin-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.pp-tab-bar button {
    border: 0;
    background: transparent;
    padding: 11px 23px;
    color: #53606c;
    white-space: nowrap;
    font-size: 14px;
}

.pp-tab-bar button.active {
    background: var(--pp-blue);
    color: #fff;
    border-radius: 3px 3px 0 0;
}

.pp-conversion-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0 16px
}

.pp-conversion-actions .pp-btn {
    min-height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none
}

.pp-overview {
    display: grid;
    grid-template-columns: 300px minmax(0,1fr);
    gap: 24px;
    align-items: start;
}

.pp-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-product-image {
    height: 320px;
    border: 1px solid #e0e4e7;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #9ba5ad;
}

.pp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pp-product-image .fa {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.pp-image-zoom {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #fff;
    cursor: zoom-in
}

.pp-image-zoom span {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 3px;
    background: rgba(20,38,59,.78);
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transition: opacity .2s
}

.pp-image-zoom:hover span,.pp-image-zoom:focus span {
    opacity: 1
}

.pp-image-zoom span .fa {
    display: inline;
    margin: 0 5px 0 0;
    font-size: 13px
}

.pp-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(8,18,31,.88)
}

.pp-image-lightbox.open {
    display: flex
}

.pp-image-lightbox img {
    max-width: 96vw;
    max-height: 92vh;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 12px 50px rgba(0,0,0,.45)
}

.pp-image-lightbox-close {
    position: absolute;
    right: 24px;
    top: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #22354a;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer
}

.pp-stock-panel {
    border: 1px solid #dfe3e6;
    border-radius: 5px;
    padding: 14px;
    background: #fff;
}

.pp-stock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
    margin-bottom: 12px;
}

.pp-stock-item label {
    display: block;
    color: #75808a;
    font-size: 12px;
    margin-bottom: 2px;
}

.pp-stock-item strong {
    font-size: 14px;
    color: #1e2b38;
    font-weight: normal;
}

.pp-stock-item strong.ok {
    color: var(--pp-green);
}

.pp-stock-tip {
    font-size: 11.5px;
    color: #98a1a8;
    line-height: 1.6;
    border-top: 1px dashed #e2e5e7;
    padding-top: 9px;
    margin-bottom: 12px;
}

.pp-mini-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #d8dee3;
    border-radius: 5px;
    background: #fff;
    color: #344251;
    padding: 8px 10px;
    font-size: 13px;
    cursor: pointer;
}

.pp-btn:hover {
    border-color: var(--pp-blue);
    color: var(--pp-blue);
}

.pp-btn.dark {
    background: #1e2935;
    color: #fff;
    border-color: #1e2935;
}

.pp-btn.amber {
    background: #f7ead0;
    border-color: #e4c887;
    color: #59461e;
}

.pp-primary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: relative;
}

.pp-export-menu {
    display: none;
    position: absolute;
    top: 44px;
    left: 0;
    width: 280px;
    padding: 6px;
    background: #fff;
    border: 1px solid #d8dee3;
    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(15,27,45,.16);
    z-index: 20;
}

.pp-export-menu.open {
    display: block;
}

.pp-export-menu button {
    width: 100%;
    border: 0;
    background: #fff;
    text-align: left;
    border-radius: 5px;
    padding: 9px 10px;
    font-size: 13px;
}

.pp-export-menu button:hover {
    background: #f2f6fb;
}

.pp-export-menu small {
    display: block;
    color: #929da6;
    margin-top: 2px;
}

.pp-summary-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e6e8;
    padding: 2px 0 9px;
    margin-bottom: 12px;
}

.pp-summary-head h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.pp-summary-head span {
    font-size: 12px;
    color: #8b969f;
}

.pp-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    border-radius: 7px;
}

.pp-summary-table,.pp-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
}

.pp-summary-table {
    table-layout: fixed;
}

.pp-summary-table td {
    border: 1px solid #e6e9eb;
    padding: 9px 10px;
    line-height: 1.5;
}

.pp-summary-table td.k {
    width: 17%;
    color: #60707e;
    background: #fafbfc;
}

.pp-summary-table td.v {
    width: 33%;
    word-break: break-word;
}

.pp-summary-table td.empty {
    color: #aeb6bc;
}

.pp-history {
    margin-top: 25px;
    border: 1px solid #dfe3e6;
    border-radius: 7px;
    overflow: hidden;
}

.pp-history-title {
    padding: 11px 14px;
    background: #f5f7f8;
    font-size: 14px;
    border-bottom: 1px solid #dfe3e6;
}

.pp-history table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.pp-history th,.pp-history td {
    padding: 9px 12px;
    border-bottom: 1px solid #eceeef;
    text-align: left;
    font-size: 12.5px;
}

.pp-history th {
    background: #fbfbfc;
    color: #687683;
    font-weight: normal;
}

.pp-empty {
    padding: 24px;
    text-align: center;
    color: #97a1a9;
    background: #fff;
}

.pp-votes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 38px;
}

.pp-vote-btn {
    width: 100%;
    height: 44px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
}

.pp-vote-btn.correct {
    border: 1px solid #36c47a;
    color: #1fa561;
}

.pp-vote-btn.error {
    border: 1px solid #ff626a;
    color: #e54b54;
}

.pp-vote-btn:hover {
    box-shadow: 0 4px 15px rgba(15,27,45,.08);
}

.pp-vote-count {
    opacity: .82;
}

.pp-suppliers {
    margin: 0 0 42px;
}

.pp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.pp-section-head h2 {
    font-size: 20px;
    margin: 0;
    font-weight: normal;
    padding-left: 10px;
    border-left: 4px solid #2f78c9;
}

.pp-section-head a {
    font-size: 13px;
    color: #2d75c8;
}

.pp-supplier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pp-supplier-card {
    border: 1px solid #dde2e5;
    border-radius: 7px;
    background: #fff;
    padding: 16px 18px;
    min-height: 150px;
}

.pp-supplier-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pp-country {
    font-size: 11px;
    color: #536270;
}

.pp-supplier-name a {
    color: #1f2c38;
}

.pp-vip {
    background: #f6b824;
    color: #6e4b00;
    border-radius: 2px;
    padding: 2px 7px;
    font-size: 11px;
    letter-spacing: .04em;
}

.pp-years {
    color: #bd7922;
    font-size: 12px;
}

.pp-complain {
    font-size: 11px;
    color: #9aa3aa;
}

.pp-supplier-line {
    font-size: 13px;
    color: #495967;
    margin-top: 10px;
}

.pp-source-tag {
    display: inline-block;
    background: #23b460;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 11px;
    margin-right: 7px;
}

.pp-supplier-sub {
    font-size: 12px;
    color: #778590;
    margin-top: 6px;
}

.pp-supplier-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.pp-contact-icons {
    display: flex;
    gap: 8px;
}

.pp-contact-icons a,.pp-contact-icons button {
    width: 30px;
    height: 30px;
    border: 1px solid #e0e5e8;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dc3e7b;
}

.pp-contact-icons .bell {
    color: #e6a21e;
}

.pp-contact-icons .chat {
    color: #7d68d7;
}

.pp-detail-link {
    font-size: 13px;
    color: #344352;
}

.pp-supplier-empty {
    grid-column: 1/-1;
    border: 1px dashed #d9dfe3;
    border-radius: 7px;
    padding: 28px;
    text-align: center;
    color: #7f8d98;
    background: #fafbfb;
}

.pp-supplier-empty a {
    color: #2b68c8;
}

.pp-standard-layout {
    display: grid;
    grid-template-columns: 228px minmax(0,1fr);
    gap: 36px;
    align-items: start;
}

.pp-module-nav {
    position: sticky;
    top: 16px;
}

.pp-nav-title {
    font-size: 11px;
    letter-spacing: .08em;
    color: #8b97a0;
    margin: 0 0 9px 5px;
}

.pp-module-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pp-module-nav a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border-radius: 7px;
    color: #5e6e7b;
    font-size: 13.5px;
    border-left: 2px solid transparent;
}

.pp-module-nav a .fa {
    width: 18px;
    text-align: center;
    color: #91a0aa;
}

.pp-module-nav a:hover {
    background: #f1f4f3;
    color: #233140;
}

.pp-module-nav a.active {
    background: var(--pp-ink);
    color: #fff;
}

.pp-module-nav a.active .fa {
    color: #1da8a5;
}

.pp-nav-note {
    border-top: 1px solid #dfe3e3;
    margin-top: 15px;
    padding: 13px 10px 0;
    font-size: 11.5px;
    line-height: 1.65;
    color: #8a969f;
}

.pp-module {
    padding: 14px 0 18px;
    border-bottom: 1px solid #dfe3e3;
    scroll-margin-top: 18px;
}

.pp-module:first-child {
    padding-top: 0;
}

.pp-module-head {
    margin-bottom: 15px;
}

.pp-eyebrow {
    font-family: Consolas,'Courier New',monospace;
    font-size: 11px;
    letter-spacing: .09em;
    color: #087676;
    margin-bottom: 5px;
}

.pp-module-head h2 {
    font-size: 21px;
    margin: 0 0 4px;
    font-weight: normal;
}

.pp-module-head p {
    font-size: 12.5px;
    color: #667887;
    margin: 0;
}

.pp-spec-table {
    border: 1px solid #dfe3e0;
}

.pp-spec-table tr {
    border-bottom: 1px solid #e8ebe7;
}

.pp-spec-table tr:nth-child(even) {
    background: #f4f6f2;
}

.pp-spec-table tr:hover {
    background: #e8f4f3;
}

.pp-spec-table th {
    width: 34%;
    text-align: left;
    padding: 9px 10px;
    font-weight: normal;
    color: #33485d;
    font-size: 12.8px;
}

.pp-spec-table td.value {
    width: auto;
    padding: 9px 10px;
    font-family: Consolas,'Courier New',monospace;
    color: #13233d;
}

.pp-spec-table td.flag {
    width: 42px;
    padding: 5px;
    text-align: center;
}

.pp-flag-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #d6dde0;
    border-radius: 6px;
    background: #fff;
    color: #8c99a3;
}

.pp-flag-btn:hover {
    border-color: #d48b22;
    color: #b76c10;
    background: #fdf4e5;
}

.pp-module-empty {
    border: 1px dashed #d9dfe2;
    border-radius: 7px;
    padding: 22px;
    text-align: center;
    color: #94a0a8;
    background: #fafbfb;
}

.pp-copy-block {
    margin-top: 14px;
    background: #0f1b2d;
    color: #e6edf3;
    border-radius: 8px;
    padding: 16px 18px;
    position: relative;
}

.pp-copy-label {
    font-family: Consolas,monospace;
    font-size: 11px;
    color: #7890a6;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.pp-copy-block pre {
    white-space: pre-wrap;
    margin: 0;
    font-family: Consolas,monospace;
    font-size: 12px;
    line-height: 1.75;
    color: #e8edf2;
    padding-right: 80px;
}

.pp-copy-block button {
    position: absolute;
    right: 14px;
    top: 12px;
    border: 1px solid #40536a;
    background: transparent;
    color: #dce5ec;
    border-radius: 5px;
    padding: 5px 9px;
    font-size: 11px;
}

.pp-files-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 13px;
}

.pp-file-card {
    border: 1px solid #dce2df;
    border-radius: 8px;
    background: #fff;
    padding: 17px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 190px;
    box-shadow: 0 7px 20px -16px rgba(15,27,45,.35);
}

.pp-file-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e7f3f2;
    color: #087675;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pp-file-card h3 {
    font-size: 14px;
    margin: 0;
    font-weight: normal;
}

.pp-file-card p {
    font-size: 12px;
    color: #677784;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.pp-file-meta {
    font-size: 11px;
    color: #93a0a9;
    font-family: Consolas,monospace;
}

.pp-file-card .pp-btn {
    width: 100%;
}

.pp-disclaimer {
    margin-top: 18px;
    border: 1px solid #dfe3df;
    border-radius: 7px;
    background: #f4f6f2;
    color: #667684;
    padding: 12px 14px;
    display: flex;
    gap: 9px;
    font-size: 12px;
    line-height: 1.6;
}

.pp-disclaimer .fa {
    color: #3b6d96;
    margin-top: 2px;
}

.pp-bottom-actions {
    margin-top: 28px;
    border: 1px solid #dfe3e5;
    border-radius: 8px;
    padding: 18px;
    background: #fff;
}

.pp-bottom-actions h2 {
    font-size: 17px;
    margin: 0 0 12px;
    font-weight: normal;
}

.pp-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}

.pp-discontinued-watermark {
    position: fixed;
    left: 50%;
    top: 48%;
    transform: translate(-50%,-50%) rotate(-18deg);
    z-index: 40;
    border: 10px solid rgba(182,43,43,.14);
    border-radius: 18px;
    padding: 18px 42px;
    color: rgba(182,43,43,.14);
    font-size: 76px;
    letter-spacing: .16em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none
}

.pp-discontinued-banner {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 12px 0 18px;
    padding: 11px 15px;
    border: 1px solid #e6b2b2;
    background: #fff4f4;
    color: #a12f2f;
    border-radius: 6px
}

.pp-stock-item strong.discontinued {
    color: #b33131
}

.pp-stop {
    display: inline-block;
    margin-left: 7px;
    padding: 2px 7px;
    border-radius: 3px;
    background: #d93d3d;
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em
}

.pp-supplier-card.stopped {
    border-color: #e5b1b1;
    background: #fffafa
}

.pp-supplier-card.stopped .pp-source-tag {
    background: #fde7e7;
    color: #b53535
}

.pp-language-note {
    margin: 8px 0 14px;
    padding: 9px 12px;
    border-left: 3px solid #d7a542;
    background: #fff9e9;
    color: #755f28;
    font-size: 12px
}

.pp-modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(15,27,45,.52);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.pp-modal-mask.open {
    display: flex;
}

.pp-modal {
    width: 920px;
    max-width: 94vw;
    max-height: 90vh;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pp-modal-head {
    background: #2b68c8;
    color: #fff;
    padding: 14px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-modal-head h3 {
    margin: 0;
    font-size: 16px;
}

.pp-modal-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 23px;
    line-height: 1;
}

.pp-modal-body {
    padding: 19px;
    overflow-y: auto;
}

.pp-modal-section {
    margin-bottom: 18px;
}

.pp-modal-section h4 {
    font-size: 14px;
    margin: 0 0 10px;
    padding-left: 8px;
    border-left: 4px solid #2b68c8;
}

.pp-edit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.pp-form-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pp-form-item label {
    font-size: 11.5px;
    color: #60707d;
}

.pp-form-item input,.pp-modal textarea,.pp-modal .pp-contact-input {
    border: 1px solid #d8dee2;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 13px;
    width: 100%;
}

.pp-evidence-drop {
    display: block;
    border: 2px dashed #cbd4dc;
    border-radius: 7px;
    padding: 24px;
    text-align: center;
    color: #5f6e7b;
    background: #fbfcfd;
    cursor: pointer
}

.pp-evidence-drop:hover {
    border-color: #2b68c8;
    background: #f5f9ff
}

.pp-evidence-drop input {
    display: none
}

.pp-evidence-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 9px
}

.pp-evidence-chip {
    font-size: 12px;
    padding: 6px 9px;
    background: #eef4fb;
    border-radius: 4px;
    color: #3f5870
}

.pp-evidence-help {
    font-size: 11px;
    color: #8b969f;
    margin-top: 7px
}

.pp-modal-foot {
    padding: 13px 19px;
    border-top: 1px solid #e5e8ea;
    display: flex;
    justify-content: flex-end;
    gap: 9px;
}

.pp-export-intro {
    margin-bottom: 14px
}

.pp-export-intro h2 {
    font-size: 20px;
    margin: 4px 0 6px;
    font-weight: normal;
}

.pp-export-intro p {
    margin: 0;
    color: #74818d;
    font-size: 12px
}

.pp-generated-exports {
    margin-bottom: 20px
}

.pp-generated-exports .pp-file-card {
    border-color: #cfe0ea;
    background: linear-gradient(180deg,#fff,#fbfdff)
}

.pp-generated-exports .pp-file-icon {
    background: #e8f5f4;
    color: #087a76
}

@media(max-width: 1050px) {
    .pp-files-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width: 920px) {
    .pp-wrap {
        padding:0 12px 36px;
    }

    .pp-overview {
        grid-template-columns: minmax(0,1fr);
    }

    .pp-left {
        max-width: 520px;
    }

    .pp-standard-layout {
        grid-template-columns: minmax(0,1fr);
        gap: 18px;
    }

    .pp-module-nav {
        position: sticky;
        top: 0;
        z-index: 25;
        background: #fff;
        padding: 8px 0;
        border-bottom: 1px solid #e2e6e8;
        overflow: hidden;
    }

    .pp-module-nav ul {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .pp-module-nav a {
        white-space: nowrap;
        border-left: 0;
    }

    .pp-nav-title,.pp-nav-note {
        display: none;
    }

    .pp-summary-table {
        min-width: 720px;
    }

    .pp-supplier-grid {
        grid-template-columns: 1fr;
    }

    .pp-history {
        overflow-x: auto;
    }

    .pp-title h1 {
        font-size: 23px;
    }

    .pp-copy-block pre {
        padding-right: 0;
        padding-top: 30px;
    }

    .pp-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 560px) {
    .pp-votes {
        grid-template-columns:1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .pp-files-grid,.pp-bottom-grid {
        grid-template-columns: 1fr;
    }

    .pp-edit-grid {
        grid-template-columns: 1fr;
    }

    .pp-product-image {
        height: 280px;
    }

    .pp-section-head {
        align-items: flex-start;
    }

    .pp-section-head h2 {
        font-size: 17px;
    }

    .pp-spec-table {
        min-width: 760px;
    }

    .pp-modal {
        max-width: 100%;
    }

    .pp-primary-actions {
        grid-template-columns: 1fr;
    }

    .pp-export-menu {
        width: 100%;
        top: 43px;
    }
}

@media print {
    .pp-tab-bar,.pp-left,.pp-votes,.pp-module-nav,.pp-bottom-actions,.pp-modal-mask {
        display: none!important;
    }

    .pp-overview,.pp-standard-layout {
        display: block;
    }

    .pp-wrap {
        max-width: none;
    }

    .pp-module {
        break-inside: avoid;
    }
}
