:root {
    --wpfs-white: #fff;
    --wpfs-brand-deep: #0f2f5f;
    --wps-border-color: #2f7cf6;
    --wps-tabs-bg-selected: #2f7cf6;
    --wps-tabs-text-selected: var(--wpfs-white);
    --wps-accent: #2f7cf6;
    --wps-accent-rgb: 47 124 246;
    --wps-main-dark: #0f2f5f;
    --wps-main-light: #efefef;
    --wps-header-text: var(--wpfs-white);
    --wps-bg-primary: #f5f8fc;
    --wps-bg-white: #fff;
    --wps-shadow-light: 0 8px 22px rgb(15 44 82 / 7%);
    --wps-shadow-medium: 0 12px 30px rgb(15 44 82 / 9%);
    --wps-radius-sm: 8px;
    --wps-radius-md: 12px;
    --wps-transition: 180ms ease;
    --wpfs-ink: #15202b;
    --wpfs-muted: #5f6b7a;
    --wpfs-line: #d8dee6;
    --wpfs-field-border: #c7d0dc;
    --wpfs-panel: #ffffff;
    --wpfs-soft: #f7f9fb;
    --wpfs-soft-blue: #f8fbff;
    --wpfs-soft-blue-border: #cfd9e6;
    --wpfs-success-soft: #e8f6ef;
    --wpfs-success-border: #9ad3b3;
    --wpfs-warning-soft: #fff7e8;
    --wpfs-warning-border: #f0c36d;
    --wpfs-accent: #2f7cf6;
    --wpfs-accent-dark: #1d60c8;
    --wpfs-success: #168a45;
    --wpfs-warning: #b76e00;
    --wpfs-danger: #b42318;
    --wpfs-hero-gradient: linear-gradient(135deg, var(--wpfs-brand-deep) 0%, #256ddc 58%, #2f7cf6 100%);
    --wpfs-lift-shadow: 0 6px 14px rgb(21 32 43 / 8%);
}

.wpfs-admin-shell {
    color: var(--wpfs-ink);
    max-width: 1320px;
}

.wpfs-dashboard {
    margin-top: 0;
    padding-top: 0;
}

.wpfs-dashboard .wpfs-page-hero {
    margin-top: 4px;
}

.wpfs-admin-shell * {
    box-sizing: border-box;
}

.wpfs-admin-shell a {
    color: var(--wpfs-accent);
}

.wpfs-page-hero {
    align-items: center;
    background: var(--wpfs-hero-gradient);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgb(21 32 43 / 14%);
    color: var(--wpfs-white);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 18px 0;
    min-height: 138px;
    padding: 24px 28px;
}

.wpfs-page-hero h1 {
    color: var(--wpfs-white);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.18;
    margin: 6px 0 8px;
}

.wpfs-page-hero p {
    color: rgb(255 255 255 / 86%);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}

.wpfs-kicker {
    color: rgb(255 255 255 / 72%);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wpfs-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    min-width: 290px;
}

.wpfs-quick-actions a {
    align-items: center;
    background: rgb(255 255 255 / 14%);
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 6px;
    color: var(--wpfs-white);
    display: inline-flex;
    font-weight: 600;
    gap: 7px;
    min-height: 36px;
    padding: 8px 11px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition);
}

.wpfs-quick-actions a:focus,
.wpfs-quick-actions a:hover {
    background: rgb(255 255 255 / 23%);
    border-color: rgb(255 255 255 / 42%);
    color: var(--wpfs-white);
}

.wpfs-quick-actions .dashicons {
    font-size: 17px;
    height: 17px;
    width: 17px;
}

.wpfs-admin-shell block.wps,
.wpfs-admin-shell .wps-box,
.wpfs-card {
    background: var(--wpfs-panel);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgb(21 32 43 / 8%);
}

.wpfs-admin-shell block.wps {
    display: block;
}

.wpfs-breadcrumbs-page block.wps > .wps-header {
    align-items: center;
    background: var(--wpfs-hero-gradient);
    border: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 10px 24px rgb(21 32 43 / 14%);
    color: var(--wpfs-white);
    display: flex;
    justify-content: flex-start;
    margin: -1.5em -1.5em 22px;
    min-height: 118px;
    padding: 24px 28px;
    text-align: left;
    width: calc(100% + 3em);
}

.wpfs-breadcrumbs-page block.wps > .wps-header h1 {
    color: var(--wpfs-white);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    margin: 0;
}

.wpfs-admin-shell .wps-submit {
    background: var(--wpfs-soft);
    border-top: 1px solid var(--wpfs-line);
    margin: 22px -1px -1px;
    padding: 16px 20px;
}

.wpfs-admin-shell .button-primary {
    background: var(--wpfs-accent);
    border-color: var(--wpfs-accent-dark);
}

.wpfs-admin-shell .button-primary:focus,
.wpfs-admin-shell .button-primary:hover {
    background: var(--wpfs-accent-dark);
    border-color: var(--wpfs-accent-dark);
}

.wpfs-config-layout {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 180px minmax(0, 1fr);
}

.wpfs-config-summary strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.wpfs-config-summary p {
    color: var(--wpfs-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 12px;
    max-width: 680px;
}

.wpfs-config-checklist {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    max-width: 720px;
}

.wpfs-config-breakdown,
.wpfs-action-row,
.wpfs-audit-detail__actions,
.wpfs-audit-detail__issues {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wpfs-config-breakdown span {
    background: #eef8f2;
    border: 1px solid #c8dfd3;
    border-radius: 999px;
    color: var(--wpfs-brand-deep);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 6px 10px;
}

.wpfs-config-checklist > span {
    color: var(--wpfs-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wpfs-config-checklist a {
    align-items: center;
    background: var(--wpfs-soft);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    color: var(--wpfs-ink);
    display: inline-flex;
    font-size: 13px;
    gap: 8px;
    min-height: 34px;
    padding: 7px 10px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition), box-shadow var(--wps-transition);
}

.wpfs-config-checklist a:hover,
.wpfs-config-checklist a:focus {
    background: var(--wpfs-white);
    border-color: var(--wpfs-accent);
    box-shadow: var(--wpfs-lift-shadow);
    color: var(--wpfs-ink);
}

.wpfs-config-checklist .dashicons {
    font-size: 16px;
    height: 16px;
    width: 16px;
}

.wpfs-config-checklist .is-complete .dashicons {
    color: var(--wpfs-success);
}

.wpfs-config-checklist .is-pending .dashicons {
    color: var(--wpfs-warning);
}

.wpfs-dashboard-options,
.wpfs-audit-detail__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wpfs-option-tile {
    background: var(--wpfs-soft-blue);
    border: 1px solid var(--wpfs-soft-blue-border);
    border-radius: 8px;
    color: var(--wpfs-muted);
    display: block;
    margin: 0;
    min-height: 142px;
    padding: 14px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition), box-shadow var(--wps-transition);
}

.wpfs-option-tile:hover,
.wpfs-option-tile:focus {
    background: var(--wpfs-white);
    border-color: var(--wpfs-accent);
    box-shadow: 0 8px 18px rgb(21 32 43 / 9%);
    color: var(--wpfs-muted);
}

.wpfs-option-tile strong {
    color: var(--wpfs-ink);
    display: block;
    font-size: 15px;
    margin-bottom: 7px;
}

.wpfs-option-tile p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 12px;
}

.wpfs-option-tile span {
    color: var(--wpfs-accent);
    display: inline-block;
    font-weight: 700;
}

.wpfs-settings-page #wps-options {
    margin-top: 0;
}

body.wpfs-admin-screen .wpfs-core-settings-page #wps-options {
    display: contents;
}

body.wpfs-admin-screen .wpfs-settings-page .wpfs-page-hero {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

body.wpfs-admin-screen .wpfs-settings-page:not(.wps) #wps-options > .wps-ar-tabs {
    margin-top: 24px;
}

.wpfs-settings-page textarea.wps,
.wpfs-settings-page input[type="text"].wps {
    border-color: var(--wpfs-field-border);
    border-radius: 6px;
    min-height: 38px;
    transition: border-color var(--wps-transition), box-shadow var(--wps-transition);
}

.wpfs-settings-page textarea.wps:focus,
.wpfs-settings-page input[type="text"].wps:focus,
.wpfs-token-editor:focus {
    border-color: var(--wpfs-accent);
    box-shadow: 0 0 0 1px var(--wpfs-accent);
}

.wpfs-settings-page textarea.wps {
    min-height: 96px;
}

.wps-core-settings-page .wpfs-settings-transfer .wps-settings-import {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--wps-admin-page-line, var(--wpfs-line));
}

.wpfs-token-source,
.wpfs-settings-page textarea.wpfs-token-source,
.wpfs-settings-page input.wpfs-token-source {
    display: none !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
}

.wpfs-token-editor {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-field-border);
    border-radius: 6px;
    box-shadow: inset 0 0 0 0 transparent;
    color: var(--wpfs-ink);
    cursor: text;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    line-height: 1.55;
    min-height: 112px;
    outline: none;
    overflow: auto;
    padding: 9px 10px;
    transition: border-color var(--wps-transition), box-shadow var(--wps-transition);
    white-space: pre-wrap;
    width: 100%;
    word-break: break-word;
}

.wpfs-token-editor.is-single-line {
    min-height: 38px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.wpfs-token-editor.is-single-line br,
.wpfs-token-editor.is-single-line div {
    display: none;
}

.wpfs-token-chip {
    align-items: center;
    background: var(--wpfs-success-soft);
    border: 1px solid var(--wpfs-success-border);
    border-radius: 5px;
    color: #0b6b3a;
    display: inline-flex;
    font-family: Consolas, Monaco, monospace;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 2px;
    max-width: 100%;
    padding: 2px 6px;
    user-select: all;
    vertical-align: baseline;
}

.wpfs-token-menu {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgb(21 32 43 / 22%);
    max-width: calc(100vw - 32px);
    overflow: hidden;
    padding: 10px;
    position: absolute;
    z-index: 100002;
}

.wpfs-token-menu-search {
    border: 1px solid var(--wpfs-field-border);
    border-radius: 6px;
    margin: 0 0 8px;
    min-height: 34px;
    width: 100%;
}

.wpfs-token-menu-list {
    max-height: 240px;
    overflow-y: auto;
}

.wpfs-token-menu-item {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--wpfs-ink);
    cursor: pointer;
    display: block;
    padding: 8px;
    text-align: left;
    width: 100%;
}

.wpfs-token-menu-item:focus,
.wpfs-token-menu-item:hover {
    background: #eef5f8;
    outline: none;
}

.wpfs-token-menu-item strong {
    color: var(--wpfs-brand-deep);
    display: block;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
}

.wpfs-token-menu-item span {
    color: var(--wpfs-muted);
    display: block;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px;
}

.wpfs-token-menu-empty {
    color: var(--wpfs-muted);
    padding: 10px 8px;
}

.wpfs-settings-page .wps-options {
    display: block;
}

.wpfs-settings-page .wps-options label,
.wpfs-settings-page .wps-options th {
    color: var(--wpfs-ink);
    font-weight: 650;
}

.wpfs-snippet-preview {
    background: var(--wpfs-soft);
    border-bottom: 1px solid var(--wpfs-line);
    margin: 0;
    padding: 18px 20px 20px;
}

.wpfs-snippet-preview__head,
.wpfs-audit-detail__head {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.wpfs-snippet-preview__head h2 {
    border: 0;
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 4px;
    padding: 0;
}

.wpfs-snippet-preview__head p,
.wpfs-replacers-head p,
.wpfs-audit-detail__head p,
.wpfs-section-head p {
    color: var(--wpfs-muted);
    margin: 0;
}

.wpfs-snippet-preview__counters {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 170px;
}

.wpfs-snippet-preview__counters span {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 5px;
    color: var(--wpfs-muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    padding: 5px 8px;
}

.wpfs-snippet-preview__counters span.is-warning {
    background: var(--wpfs-warning-soft);
    border-color: var(--wpfs-warning-border);
    color: var(--wpfs-warning);
}

.wpfs-snippet-preview__grid {
    align-items: start;
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
}

.wpfs-serp-preview,
.wpfs-social-preview {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    min-width: 0;
    overflow: hidden;
}

.wpfs-serp-preview {
    padding: 18px;
}

.wpfs-serp-preview__url {
    color: #202124;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wpfs-serp-preview h3 {
    color: #1a0dab;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 5px;
    overflow-wrap: anywhere;
}

.wpfs-serp-preview p {
    color: #4d5156;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.wpfs-social-preview__media {
    align-items: center;
    background: #e9eef3;
    color: var(--wpfs-muted);
    display: flex;
    font-weight: 700;
    justify-content: center;
    min-height: 150px;
    overflow: hidden;
    text-align: center;
}

.wpfs-social-preview__media img {
    display: block;
    height: 100%;
    max-height: 190px;
    object-fit: cover;
    width: 100%;
}

.wpfs-social-preview__body {
    padding: 12px 14px 14px;
}

.wpfs-social-preview__body span {
    color: var(--wpfs-muted);
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.wpfs-social-preview__body strong {
    color: var(--wpfs-ink);
    display: block;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.wpfs-social-preview__body p {
    color: var(--wpfs-muted);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.wpfs-replacers-panel {
    background: var(--wpfs-soft);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    margin: 12px 0 16px;
    padding: 18px;
}

.wpfs-replacers-head {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.wpfs-replacers-head h2 {
    font-size: 19px;
    margin: 0 0 4px;
}

.wpfs-replacer-search {
    border-color: var(--wpfs-field-border);
    border-radius: 6px;
    min-height: 38px;
    min-width: 240px;
}

.wpfs-token-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.wpfs-token-strip code,
.wpfs-replacers-table strong {
    background: #eef5f8;
    border: 1px solid #cce0e9;
    border-radius: 5px;
    color: var(--wpfs-brand-deep);
    display: inline-block;
    font-family: Consolas, Monaco, monospace;
    font-size: 12px;
    padding: 3px 6px;
}

.wpfs-replacers-table,
.wpfs-audit-table {
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    overflow: hidden;
}

.wpfs-replacers-table th,
.wpfs-audit-table th {
    background: var(--wpfs-brand-deep);
    color: var(--wpfs-white);
}

.wpfs-replacers-table td {
    vertical-align: middle;
}

.wpfs-faq-page block.wps {
    overflow: hidden;
    padding-bottom: 0;
}

.wpfs-faq-page {
    max-width: none;
    min-width: 0;
    width: 100%;
}

.wpfs-faq-page .wpfs-faq-hero > * {
    min-width: 0;
}

.wpfs-faq-page .wpfs-faq-subtitle {
    margin-bottom: 0;
}

.wpfs-faq-page .wpfs-faq-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    min-width: 0;
}

.wpfs-faq-page .wpfs-faq-actions .wpfs-btn {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.wpfs-faq-page .wpfs-faq-actions .is-info {
    background: var(--wpfs-accent);
    border-color: var(--wpfs-accent-dark);
    color: #ffffff;
}

.wpfs-faq-page .wpfs-faq-actions .is-info:hover,
.wpfs-faq-page .wpfs-faq-actions .is-info:focus {
    background: var(--wpfs-accent-dark);
    border-color: var(--wpfs-accent-dark);
    color: #ffffff;
}

.wpfs-faq-page .wpfs-faq-actions .is-neutral {
    background: #ffffff;
    border-color: #cfe7d8;
    color: var(--wpfs-brand-deep);
}

.wpfs-faq-page .wpfs-faq-actions .is-neutral:hover,
.wpfs-faq-page .wpfs-faq-actions .is-neutral:focus {
    border-color: #9ad3b3;
    color: var(--wpfs-brand-deep);
}

.wpfs-faq-page .wpfs-faq-content {
    display: block;
}

.wpfs-faq-page .wps-faq-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.wpfs-faq-page .wps-faq-item,
.wpfs-faq-page .wps-faq-question-wrapper {
    margin: 0;
    min-width: 0;
    width: 100%;
}

.wpfs-faq-page .wps-faq-question {
    align-items: center;
    background: #f7fbf9;
    border: 1px solid #c8dfd3;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(21 32 43 / 7%);
    color: var(--wpfs-ink);
    display: flex;
    font-weight: 700;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.35;
    min-height: 48px;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 12px 14px;
    transition: background var(--wps-transition), border-color var(--wps-transition), box-shadow var(--wps-transition);
    width: 100%;
}

.wpfs-faq-page .wps-faq-question:hover,
.wpfs-faq-page .wps-faq-question:focus {
    background: #eef8f2;
    border-color: #95c7a9;
    box-shadow: 0 7px 18px rgb(21 32 43 / 10%);
}

.wpfs-faq-page .wps-collapse-icon {
    align-items: center;
    background: var(--wpfs-success);
    border-radius: 999px;
    color: var(--wpfs-white);
    display: inline-flex;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    line-height: 1;
    margin-left: 14px;
    min-width: 26px;
    position: static;
    top: auto;
    right: auto;
    width: 26px;
}

.wpfs-faq-page .wps-faq-answer {
    background: #fbfdfc;
    border: 1px solid #d9ebe2;
    border-left: 4px solid var(--wpfs-success);
    border-radius: 0 0 8px 8px;
    color: var(--wpfs-muted);
    margin: -4px 0 4px;
    min-width: 0;
    overflow-wrap: anywhere;
    padding: 14px 16px;
}

.wpfs-faq-page .wps-faq-answer p {
    line-height: 1.58;
}

.wpfs-faq-page .wps-faq-answer code {
    background: #eef8f2;
    border: 1px solid #c8dfd3;
    border-radius: 5px;
    color: var(--wpfs-brand-deep);
    display: inline-block;
    max-width: 100%;
    white-space: normal;
    padding: 4px 6px;
}

.wpfs-dashboard aside.wps {
    margin-top: 4px;
}

.wpfs-sidebar {
    min-width: 0;
    max-width: 320px;
}

.wpfs-sidebar .wps-box:last-child {
    margin-bottom: 0;
}

.wpfs-dashboard .wpfs-donation-card {
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.wpfs-donation-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px 22px 20px;
    border: 1px solid #0b2a53;
    border-radius: 8px;
    background:
        radial-gradient(circle at 100% 0, rgb(34 113 177 / 15%), transparent 78px),
        linear-gradient(145deg, #071b35 0%, #09264d 100%);
    box-shadow: 0 16px 32px rgb(15 23 42 / 28%);
    color: #f8fafc;
    text-align: left;
}

.wpfs-support-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 0 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #168a45 100%);
    color: #ffffff;
    font-size: 21px;
    line-height: 42px;
    box-shadow: 0 12px 24px rgb(22 138 69 / 34%);
}

.wpfs-support-icon .wpfs-support-icon-svg {
    width: 21px;
    height: 21px;
}

.wpfs-donation-panel .wps-donation-title {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 9px;
}

.wpfs-donation-panel .wpfs-muted {
    margin: 0 0 16px;
    color: #d7e5f8;
    font-size: 12px;
    line-height: 1.5;
}

.wpfs-support-cta {
    display: grid;
    gap: 10px;
    margin-top: 0;
}

.wpfs-donation-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 5px;
    box-sizing: border-box;
    color: var(--wpfs-white) !important;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    min-height: 36px;
    padding: 0 14px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition);
    width: 100%;
}

.wpfs-donation-button .dashicons,
.wpfs-donation-button .wpfs-btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    font-size: 16px;
    line-height: 16px;
}

.wpfs-donation-button:hover,
.wpfs-donation-button:focus {
    color: var(--wpfs-white);
}

.wpfs-donation-button--paypal {
    background: #1da64f;
    border-color: #56d47d;
}

.wpfs-donation-button--paypal:hover,
.wpfs-donation-button--paypal:focus {
    background: #168a45;
    border-color: #74e191;
}

.wpfs-donation-button--review {
    background: transparent;
    border-color: #8ca7c9;
    color: #f7fbff !important;
}

.wpfs-donation-button--review:hover,
.wpfs-donation-button--review:focus {
    background: rgb(255 255 255 / 8%);
    border-color: #a8c3e5;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button {
    border-radius: 5px;
    box-shadow: none;
    color: #ffffff !important;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--paypal {
    background: #1da64f !important;
    border-color: #56d47d !important;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--paypal:hover,
body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--paypal:focus {
    background: #168a45 !important;
    border-color: #74e191 !important;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--review {
    background: transparent !important;
    border-color: #8ca7c9 !important;
    color: #f7fbff !important;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--review:hover,
body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-panel .wpfs-donation-button--review:focus {
    background: rgb(255 255 255 / 8%) !important;
    border-color: #a8c3e5 !important;
}

.wpfs-support-card {
    background: #ffffff;
    border-color: #d7e5f5;
    box-shadow: 0 10px 24px rgb(15 44 82 / 7%);
    padding: 20px;
}

.wpfs-support-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: #112744;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.wpfs-support-card h3 .dashicons,
.wpfs-support-card h3 .wpfs-sidebar-title-icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: #168a45;
    font-size: 18px;
    line-height: 20px;
}

.wpfs-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.wpfs-link-list li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpfs-sidebar .wpfs-link-list a {
    position: relative;
    align-items: center;
    background: #fbfdff;
    border: 1px solid #d7e5f5;
    border-radius: 6px;
    color: #20344f;
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    min-height: 38px;
    padding: 10px 34px 10px 12px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition), box-shadow var(--wps-transition);
}

.wpfs-sidebar .wpfs-link-list a::after {
    content: "\203A";
    position: absolute;
    right: 12px;
    color: #168a45;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transition: color var(--wps-transition);
}

.wpfs-sidebar .wpfs-link-list a .dashicons,
.wpfs-sidebar .wpfs-link-list a .wpfs-link-icon {
    color: #168a45;
    width: 17px;
    height: 17px;
    font-size: 17px;
    line-height: 17px;
    transition: color var(--wps-transition);
}

.wpfs-sidebar .wpfs-link-list a:hover,
.wpfs-sidebar .wpfs-link-list a:focus {
    background: #f7fbff;
    border-color: #bfd7f4;
    box-shadow: 0 8px 18px rgb(15 44 82 / 7%);
    color: #071f38;
}

.wpfs-sidebar .wpfs-link-list a:hover .dashicons,
.wpfs-sidebar .wpfs-link-list a:focus .dashicons,
.wpfs-sidebar .wpfs-link-list a:hover .wpfs-link-icon,
.wpfs-sidebar .wpfs-link-list a:focus .wpfs-link-icon,
.wpfs-sidebar .wpfs-link-list a:hover::after,
.wpfs-sidebar .wpfs-link-list a:focus::after {
    color: #0f6b37;
}

.wpfs-audit-page block.wps {
    padding: 18px;
}

.wpfs-audit-summary {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.wpfs-audit-summary div {
    background: var(--wpfs-soft);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    padding: 14px;
}

.wpfs-audit-summary strong {
    color: var(--wpfs-ink);
    display: block;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.wpfs-audit-summary span,
.wpfs-audit-muted {
    color: var(--wpfs-muted);
}

.wpfs-audit-filters,
.wpfs-audit-detail-lookup {
    align-items: flex-end;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
}

.wpfs-audit-filters {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
}

.wpfs-audit-detail-lookup {
    background: #f8fbfd;
    border: 1px solid #cbdce8;
    margin: -6px 0 18px;
}

.wpfs-audit-detail-lookup.is-detail-page {
    margin: 0 0 18px;
}

.wpfs-audit-filters label,
.wpfs-audit-detail-lookup label {
    display: grid;
    gap: 5px;
}

.wpfs-audit-filters label span,
.wpfs-audit-detail-lookup label span,
.wpfs-audit-detail article div span:not(.wpfs-audit-badge) {
    color: var(--wpfs-muted);
    font-size: 12px;
    font-weight: 700;
}

.wpfs-audit-filters select,
.wpfs-audit-filters input[type="search"],
.wpfs-audit-detail-lookup select,
.wpfs-audit-detail-lookup input[type="search"] {
    border-color: var(--wpfs-field-border);
    border-radius: 6px;
    min-height: 36px;
}

.wpfs-audit-search,
.wpfs-audit-detail-field {
    flex: 1 1 260px;
}

.wpfs-audit-table td {
    vertical-align: top;
}

.wpfs-audit-table p {
    color: var(--wpfs-muted);
    margin: 6px 0 0;
    max-width: 460px;
    overflow-wrap: anywhere;
}

.wpfs-audit-count {
    color: var(--wpfs-muted);
    display: inline-block;
    font-size: 12px;
    margin-left: 6px;
}

.wpfs-audit-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 4px 8px;
}

.wpfs-audit-badge.is-ok {
    background: var(--wpfs-success-soft);
    color: var(--wpfs-success);
}

.wpfs-audit-badge.is-warn {
    background: var(--wpfs-warning-soft);
    color: var(--wpfs-warning);
}

.wpfs-audit-badge.is-bad {
    background: #fdecea;
    color: var(--wpfs-danger);
}

.wpfs-audit-detail {
    background: #f8fbfd;
    border: 1px solid #cbdce8;
    border-radius: 8px;
    box-shadow: inset 4px 0 0 var(--wpfs-accent);
    margin: 0 0 18px;
    padding: 18px;
}

.wpfs-audit-detail.is-empty {
    align-items: center;
    display: flex;
    gap: 10px;
}

.wpfs-audit-detail.is-empty p {
    margin: 0;
}

.wpfs-audit-detail__head .wpfs-kicker {
    color: var(--wpfs-accent);
}

.wpfs-audit-detail__head h2 {
    font-size: 22px;
    line-height: 1.25;
    margin: 4px 0 5px;
}

.wpfs-audit-detail__actions {
    justify-content: flex-end;
}

.wpfs-audit-detail article {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    min-width: 0;
    padding: 14px;
}

.wpfs-audit-detail__wide {
    grid-column: 1 / -1;
}

.wpfs-audit-detail h3 {
    font-size: 13px;
    line-height: 1.3;
    margin: 0 0 9px;
    text-transform: uppercase;
}

.wpfs-audit-detail article div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wpfs-audit-detail article p {
    color: var(--wpfs-muted);
    line-height: 1.55;
    margin: 9px 0 0;
    overflow-wrap: anywhere;
}

.wpfs-audit-detail__issues span {
    background: var(--wpfs-warning-soft);
    border: 1px solid var(--wpfs-warning-border);
    border-radius: 999px;
    color: var(--wpfs-warning);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
}

.wpfs-audit-image-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
}

.wpfs-audit-image-list li {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 7px;
    display: grid;
    gap: 3px;
    list-style: none;
    padding: 9px 10px;
}

.wpfs-audit-image-list strong {
    color: var(--wpfs-ink);
    overflow-wrap: anywhere;
}

.wpfs-audit-image-list span {
    color: var(--wpfs-muted);
    font-size: 12px;
}

.wpfs-audit-actions {
    align-items: stretch;
    display: inline-grid;
    gap: 6px;
    grid-template-columns: 1fr;
    min-width: 108px;
}

.wpfs-audit-action {
    align-items: center;
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-field-border);
    border-radius: 7px;
    color: var(--wpfs-accent);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 5px;
    justify-content: center;
    line-height: 1.2;
    min-height: 34px;
    padding: 7px 10px;
    text-decoration: none;
    transition: background var(--wps-transition), border-color var(--wps-transition), color var(--wps-transition);
}

.wpfs-audit-action:focus,
.wpfs-audit-action:hover {
    background: #eef5f8;
    border-color: var(--wpfs-accent);
    color: var(--wpfs-accent-dark);
}

.wpfs-audit-action .dashicons {
    font-size: 15px;
    height: 15px;
    width: 15px;
}

.wpfs-audit-action--edit {
    color: #b42318;
}

.wpfs-audit-action--edit:focus,
.wpfs-audit-action--edit:hover {
    background: #fdecea;
    border-color: #f1b4af;
    color: #8f1d14;
}

.wpfs-audit-pagination {
    align-items: center;
    background: var(--wpfs-soft);
    border: 1px solid var(--wpfs-line);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin: 16px 0 0;
    padding: 14px 16px;
}

.wpfs-audit-page-link,
.wpfs-audit-page-current {
    align-items: center;
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-field-border);
    border-radius: 8px;
    display: inline-flex;
    min-height: 38px;
    text-decoration: none;
}

.wpfs-audit-pagination__controls {
    display: flex;
    gap: 8px;
}

.wpfs-audit-page-link {
    color: var(--wpfs-accent);
    font-weight: 700;
    gap: 4px;
    padding: 8px 12px;
}

.wpfs-audit-page-link:focus,
.wpfs-audit-page-link:hover {
    border-color: var(--wpfs-accent);
    color: var(--wpfs-accent-dark);
}

.wpfs-audit-page-link.is-disabled {
    color: #98a4b3;
    cursor: default;
    opacity: .72;
}

.wpfs-audit-page-current {
    color: var(--wpfs-ink);
    flex-direction: column;
    justify-content: center;
    min-width: 160px;
    padding: 8px 14px;
}

.wpfs-audit-page-current strong {
    line-height: 1.2;
}

.wpfs-audit-page-current small {
    color: var(--wpfs-muted);
    font-size: 11px;
    line-height: 1.2;
}

#wpfs-toast-host,
#wpopt-toast-host {
    display: grid;
    gap: 8px;
    position: fixed;
    right: 24px;
    top: 46px;
    width: min(360px, calc(100vw - 52px));
    z-index: 100000;
}

.wpfs-toast,
.wpopt-toast {
    background: #15202b;
    border-left: 4px solid var(--wpfs-accent);
    border-radius: 7px;
    box-shadow: 0 14px 34px rgb(21 32 43 / 24%);
    color: var(--wpfs-white);
    font-weight: 700;
    line-height: 1.4;
    opacity: 0;
    padding: 13px 15px;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.wpfs-toast.is-visible,
.wpopt-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wpfs-toast.is-success,
.wpopt-toast.is-success {
    border-left-color: var(--wpfs-success);
}

.wpfs-toast.is-error,
.wpopt-toast.is-error {
    border-left-color: var(--wpfs-danger);
}

.wpfs-toast.is-warning,
.wpopt-toast.is-warning {
    border-left-color: var(--wpfs-warning);
}

.wpfs-redirect-layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, .8fr);
    margin-bottom: 18px;
}

.wpfs-redirect-form,
.wpfs-redirect-import {
    display: grid;
    gap: 16px;
}

.wpfs-redirect-form label,
.wpfs-redirect-import label {
    display: grid;
    gap: 6px;
}

.wpfs-redirect-form label span,
.wpfs-redirect-import label span {
    color: var(--wpfs-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.wpfs-redirect-form input[type="text"],
.wpfs-redirect-form select,
.wpfs-redirect-form textarea {
    max-width: 100%;
    width: 100%;
}

.wpfs-csv-uploader {
    display: grid;
    gap: 8px;
}

.wpfs-upload-drop {
    align-items: center;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
    border: 1px dashed #9bb9cc;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 86px;
    padding: 16px;
    position: relative;
    transition: background var(--wps-transition), border-color var(--wps-transition), box-shadow var(--wps-transition);
}

.wpfs-upload-drop:focus-within,
.wpfs-upload-drop:hover {
    background: #f5fafc;
    border-color: var(--wpfs-accent);
    box-shadow: 0 0 0 3px rgb(29 111 159 / 12%);
}

.wpfs-upload-drop > .dashicons {
    align-items: center;
    background: #e3f1f7;
    border-radius: 8px;
    color: var(--wpfs-accent);
    display: inline-flex;
    font-size: 20px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.wpfs-file-input {
    cursor: pointer;
    inset: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
}

.wpfs-upload-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.wpfs-upload-copy strong {
    color: var(--wpfs-ink);
    font-size: 14px;
    line-height: 1.25;
}

.wpfs-upload-copy small {
    color: var(--wpfs-muted);
    font-size: 12px;
    line-height: 1.35;
}

.wpfs-upload-button {
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-field-border);
    border-radius: 7px;
    color: var(--wpfs-accent);
    font-weight: 700;
    min-height: 34px;
    padding: 8px 12px;
    text-align: center;
}

.wpfs-file-name {
    align-items: center;
    background: var(--wpfs-white);
    border: 1px solid var(--wpfs-line);
    border-radius: 7px;
    color: var(--wpfs-muted);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    min-height: 34px;
    overflow-wrap: anywhere;
    padding: 8px 10px;
}

.wpfs-file-name.has-file {
    background: var(--wpfs-success-soft);
    border-color: var(--wpfs-success-border);
    color: var(--wpfs-success);
}

.wpfs-redirect-table code {
    white-space: normal;
    word-break: break-word;
}

.wpfs-inline-form {
    display: inline;
    margin: 0;
}

.wpfs-inline-form button.wpfs-audit-action {
    border: 0;
    cursor: pointer;
}

.wpfs-section-head {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.wpfs-section-head h2 {
    margin: 0 0 6px;
}

.wpfs-404-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
}

.wpfs-404-table-wrap {
    border: 1px solid #ccd0d4;
    overflow-x: auto;
    width: 100%;
}

.wpfs-404-table {
    border: 0;
    min-width: 1180px;
    table-layout: fixed;
}

.wpfs-404-table th,
.wpfs-404-table td {
    vertical-align: top;
}

.wpfs-404-table th:nth-child(1) {
    width: 24%;
}

.wpfs-404-table th:nth-child(2) {
    width: 74px;
}

.wpfs-404-table th:nth-child(3),
.wpfs-404-table th:nth-child(4) {
    width: 150px;
}

.wpfs-404-table th:nth-child(5) {
    width: 210px;
}

.wpfs-404-table th:nth-child(6) {
    width: 250px;
}

.wpfs-404-url code,
.wpfs-404-referrer code {
    background: transparent;
    display: block;
    line-height: 1.45;
    overflow-wrap: anywhere;
    padding: 0;
    white-space: normal;
    word-break: break-word;
}

.wpfs-404-count {
    font-weight: 700;
}

.wpfs-404-redirect-form {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
}

.wpfs-404-redirect-form input[type="text"] {
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.wpfs-404-redirect-form .button {
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 960px) {
    .wpfs-page-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .wpfs-quick-actions {
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
    }

    .wpfs-config-layout {
        grid-template-columns: 1fr;
    }

    .wpfs-dashboard-options {
        grid-template-columns: 1fr;
    }

    .wpfs-snippet-preview__grid {
        grid-template-columns: 1fr;
    }

    .wpfs-audit-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wpfs-audit-detail__head {
        flex-direction: column;
    }

    .wpfs-redirect-layout {
        grid-template-columns: 1fr;
    }

    .wpfs-section-head {
        flex-direction: column;
    }

    .wpfs-upload-drop {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .wpfs-upload-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .wpfs-page-hero {
        padding: 20px;
    }

    .wpfs-page-hero h1 {
        font-size: 24px;
    }

    .wpfs-quick-actions a {
        width: 100%;
    }

    .wpfs-replacers-head {
        align-items: stretch;
        flex-direction: column;
    }

    .wpfs-snippet-preview {
        padding: 16px;
    }

    .wpfs-snippet-preview__head {
        align-items: stretch;
        flex-direction: column;
    }

    .wpfs-snippet-preview__counters {
        align-items: stretch;
    }

    .wpfs-replacer-search {
        min-width: 0;
        width: 100%;
    }

    .wpfs-audit-summary {
        grid-template-columns: 1fr;
    }

    .wpfs-404-redirect-form {
        grid-template-columns: 1fr;
    }

    .wpfs-audit-filters .button,
    .wpfs-audit-filters label,
    .wpfs-audit-detail-lookup .button,
    .wpfs-audit-detail-lookup label {
        width: 100%;
    }

    .wpfs-audit-detail__grid {
        grid-template-columns: 1fr;
    }

    .wpfs-audit-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .wpfs-audit-pagination__controls {
        display: grid;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .wpfs-audit-page-link,
    .wpfs-audit-page-current {
        justify-content: center;
        width: 100%;
    }

    #wpfs-toast-host {
        left: 16px;
        right: 16px;
        top: 56px;
        width: calc(100vw - 32px);
    }
}

/* Flexy SEO WPS admin theme. Shared layout lives in WPS framework. */
body.wpfs-admin-screen {
    --wps-border-color: #168a45;
    --wps-tabs-bg-selected: #168a45;
    --wps-accent: #168a45;
    --wps-accent-rgb: 22 138 69;
    --wps-main-dark: #0f5132;
    --wps-main-light: #f0fdf4;
    --wps-admin-page-blue: #168a45;
    --wps-admin-page-blue-dark: #0f5132;
    --wps-admin-page-blue-light: #86efac;
    --wps-admin-page-line: #d7eadf;
    --wps-admin-page-ink: #173225;
    --wps-admin-page-muted: #5f7168;
    --wps-admin-header-description: "Configure Flexy SEO modules and metadata tools.";
    --wpfs-brand-deep: #0f5132;
    --wpfs-accent: #168a45;
    --wpfs-accent-dark: #0f6b37;
    --wpfs-success: #168a45;
    --wpfs-soft-blue: #f3fbf6;
    --wpfs-soft-blue-border: #cfe7d8;
    --wpfs-hero-gradient: linear-gradient(135deg, #0f5132 0%, #168a45 58%, #4ade80 100%);
}

body.wpfs-admin-screen .wpfs-dashboard {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: var(--wps-admin-page-gutter) !important;
}

body.wpfs-admin-screen .wpfs-dashboard > .wps {
    display: grid;
    gap: 22px;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-page-hero,
body.wpfs-admin-screen .wpfs-dashboard block.wps,
body.wpfs-admin-screen .wpfs-dashboard .wps-box {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

body.wpfs-admin-screen .wpfs-dashboard .wpfs-page-hero,
body.wpfs-admin-screen .wpfs-dashboard > .wps > block.wps {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.wpfs-admin-screen .wpfs-dashboard aside.wps {
    min-width: 0;
}

body.wpfs-admin-screen .wpfs-dashboard .button-primary,
body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-button--paypal {
    background: var(--wpfs-accent);
    border-color: var(--wpfs-accent-dark);
}

body.wpfs-admin-screen .wpfs-dashboard .button-primary:hover,
body.wpfs-admin-screen .wpfs-dashboard .button-primary:focus,
body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-button--paypal:hover,
body.wpfs-admin-screen .wpfs-dashboard .wpfs-donation-button--paypal:focus {
    background: var(--wpfs-accent-dark);
    border-color: var(--wpfs-accent-dark);
}

body.wpfs-faq-admin-screen #wpwrap {
    min-width: 0;
}

body.wpfs-faq-admin-screen #wpcontent,
body.wpfs-faq-admin-screen #wpbody-content,
body.wpfs-faq-admin-screen .wpfs-faq-page,
body.wpfs-faq-admin-screen .wpfs-faq-page > block.wps {
    max-width: 100%;
}

body.wpfs-admin-screen .wpfs-faq-page > block.wps {
    padding: 0 !important;
    min-height: var(--wps-admin-page-min-height);
}

@media (max-width: 600px) {
    body.wpfs-faq-admin-screen .wpfs-faq-page .wps-faq-question {
        padding: 12px;
    }

    body.wpfs-faq-admin-screen .wpfs-faq-page .wpfs-faq-actions .wpfs-btn {
        justify-content: center;
        width: 100%;
    }
}
