/* Migrated base styles: install panel cards */
.g1962io-install-list {
    display: grid;
    gap: 12px;
}

.g1962io-install-card {
    border-radius: 22px;
    padding: 16px;
    background: rgba(47,128,237,.055);
    border: 1px solid rgba(47,128,237,.16);
    box-shadow: 0 12px 34px rgba(47,128,237,.08);
}

.g1962io-install-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.g1962io-install-title {
    margin: 0;
    color: #061f3b;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1.5;
}

.g1962io-install-sub {
    margin: 4px 0 0;
    color: #526b84;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.8;
}

.g1962io-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
}

.g1962io-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(47,128,237,.10);
    color: #0b4f97;
    border: 1px solid rgba(47,128,237,.18);
    font-size: 11px;
    font-weight: 950;
    white-space: nowrap;
}

.g1962io-badge.green {
    background: rgba(184,255,44,.28);
    color: #233d00;
    border-color: rgba(111,163,0,.16);
}

.g1962io-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.g1962io-mini {
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,.56);
    border: 1px solid rgba(255,255,255,.82);
}

.g1962io-mini span {
    display: block;
    color: #526b84;
    font-size: 11px;
    font-weight: 850;
    margin-bottom: 6px;
}

.g1962io-mini strong {
    display: block;
    color: #061f3b;
    font-size: 13px;
    font-weight: 1000;
    word-break: break-word;
    line-height: 1.7;
}

.g1962io-games {
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,.52);
    border: 1px solid rgba(255,255,255,.82);
    color: #061f3b;
    font-size: 13px;
    font-weight: 800;
    line-height: 2;
    margin-top: 8px;
}

.g1962io-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.g1962io-manager-form {
    display: grid;
    grid-template-columns: 220px 1fr 110px;
    gap: 8px;
    margin-top: 12px;
    align-items: start;
}

.g1962io-manager-form select,
.g1962io-manager-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(47,128,237,.18);
    background: rgba(255,255,255,.70);
    padding: 10px 12px;
    color: #071827;
    font-weight: 800;
}

.g1962io-manager-form textarea {
    min-height: 42px;
    resize: vertical;
}

.g1962io-empty {
    border-radius: 18px;
    padding: 15px;
    background: rgba(47,128,237,.055);
    border: 1px dashed rgba(47,128,237,.26);
    color: #526b84;
    line-height: 2;
    font-size: 13px;
    font-weight: 750;
}

@media (max-width: 980px) {
    .g1962io-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .g1962io-manager-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .g1962io-install-head {
        flex-direction: column;
    }

    .g1962io-badges {
        justify-content: flex-start;
    }

    .g1962io-grid {
        grid-template-columns: 1fr;
    }
}

/* Migrated base styles: panel core */
:root {
    --g1962-blue-main: #2f80ed;
    --g1962-blue-dark: #061f3b;
    --g1962-blue-mid: #0b4f97;
    --g1962-blue-soft: rgba(47,128,237,.14);
    --g1962-blue-soft-2: rgba(47,128,237,.22);
    --g1962-lime: #b8ff2c;
    --g1962-lime-text: #233d00;
    --g1962-text: #071827;
    --g1962-muted: #526b84;
    --g1962-border: rgba(47,128,237,.18);
    --g1962-border-2: rgba(47,128,237,.30);
    --g1962-glass: rgba(255,255,255,.70);
    --g1962-glass-strong: rgba(255,255,255,.88);
    --g1962-shadow: 0 26px 70px rgba(47,128,237,.18);
    --g1962-shadow-soft: 0 14px 36px rgba(47,128,237,.12);
}

body.g1962-panel-page,
body:has(.g1962-app) {
    background:
        radial-gradient(circle at 10% 12%, rgba(47,128,237,.20), transparent 24%),
        radial-gradient(circle at 88% 14%, rgba(47,128,237,.14), transparent 26%),
        linear-gradient(180deg, #fff 0%, #edf6ff 100%) !important;
}

.g1962-app,
.g1962-app * {
    box-sizing: border-box;
}

.g1962-app {
    direction: rtl;
    max-width: 1180px;
    margin: 28px auto 42px;
    color: var(--g1962-text);
    position: relative;
    isolation: isolate;
}

.g1962-app::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: 40px;
    right: -130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47,128,237,.26), transparent 68%);
    z-index: -1;
}

.g1962-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.g1962-sidebar,
.g1962-main,
.g1962-top,
.g1962-stat,
.g1962-card,
.g1962-field,
.g1962-table td,
.g1962-bubble {
    background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.56));
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: var(--g1962-shadow-soft);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.g1962-sidebar {
    border-radius: 28px;
    padding: 14px;
    position: sticky;
    top: 20px;
}

.g1962-main {
    border-radius: 28px;
    padding: 18px;
    min-height: 620px;
    overflow: hidden;
}

.g1962-brand {
    border-radius: 20px;
    padding: 14px;
    margin-bottom: 10px;
    background:
        radial-gradient(circle at 20% 10%, rgba(47,128,237,.20), transparent 38%),
        linear-gradient(135deg, rgba(47,128,237,.14), rgba(255,255,255,.44));
    border: 1px solid var(--g1962-border);
}

.g1962-brand b {
    display: block;
    color: var(--g1962-blue-dark);
    font-size: 18px;
    font-weight: 1000;
    margin-bottom: 6px;
}

.g1962-brand span {
    display: block;
    color: var(--g1962-muted);
    font-size: 12px;
    line-height: 1.8;
    font-weight: 750;
}

.g1962-menu {
    display: grid;
    gap: 7px;
}

.g1962-tab {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--g1962-blue-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    transition: .18s ease;
}

.g1962-tab i {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(47,128,237,.10);
    color: var(--g1962-blue-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    flex: 0 0 30px;
}

.g1962-tab:hover {
    background: rgba(47,128,237,.08);
}

.g1962-tab.is-active {
    background: linear-gradient(135deg, rgba(47,128,237,.20), rgba(47,128,237,.10));
    color: var(--g1962-blue-dark);
    box-shadow: inset 0 0 0 1px rgba(47,128,237,.16);
}

.g1962-tab.is-active i {
    background: linear-gradient(135deg, var(--g1962-lime), #dcff85);
    color: var(--g1962-lime-text);
}

.g1962-top {
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 14px;
    background:
        radial-gradient(circle at 8% 20%, rgba(47,128,237,.20), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.54));
}

.g1962-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.g1962-kicker {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(47,128,237,.12);
    color: var(--g1962-blue-mid);
    border: 1px solid var(--g1962-border);
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 10px;
}

.g1962-title h1 {
    margin: 0 0 8px;
    color: var(--g1962-blue-dark);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 1000;
    line-height: 1.25;
}

.g1962-title p {
    margin: 0;
    color: var(--g1962-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
    max-width: 720px;
}

.g1962-pills {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.g1962-pill {
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(47,128,237,.10);
    color: var(--g1962-blue-mid);
    border: 1px solid var(--g1962-border);
    font-size: 11px;
    font-weight: 950;
    white-space: nowrap;
}

.g1962-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.g1962-stat {
    border-radius: 20px;
    padding: 15px;
    min-height: 92px;
}

.g1962-stat span {
    display: block;
    color: var(--g1962-muted);
    font-size: 11px;
    font-weight: 850;
    margin-bottom: 7px;
}

.g1962-stat strong {
    display: block;
    color: var(--g1962-blue-dark);
    font-size: 21px;
    font-weight: 1000;
    line-height: 1.3;
    word-break: break-word;
}

.g1962-panel {
    display: none;
    animation: g1962Fade .16s ease both;
}

.g1962-panel.is-active {
    display: block;
}

@keyframes g1962Fade {
    from { opacity: 0; transform: translateY(3px); }
    to { opacity: 1; transform: translateY(0); }
}

.g1962-card {
    border-radius: 22px;
    padding: 16px;
    margin-bottom: 12px;
}

.g1962-card h2 {
    margin: 0 0 8px;
    color: var(--g1962-blue-dark);
    font-size: 21px;
    font-weight: 1000;
}

.g1962-note {
    margin: 0 0 14px;
    color: var(--g1962-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.9;
}

.g1962-empty {
    border-radius: 18px;
    padding: 15px;
    background: rgba(47,128,237,.055);
    border: 1px dashed var(--g1962-border-2);
    color: var(--g1962-muted);
    font-size: 13px;
    line-height: 2;
    font-weight: 750;
}

.g1962-table-wrap {
    overflow-x: auto;
    padding-bottom: 2px;
}

.g1962-table {
    width: 100%;
    min-width: 650px;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.g1962-table th {
    color: var(--g1962-muted);
    font-size: 12px;
    text-align: right;
    padding: 8px 10px;
    font-weight: 900;
}

.g1962-table td {
    padding: 12px 10px;
    color: var(--g1962-text);
    font-size: 13px;
    font-weight: 750;
}

.g1962-table td:first-child {
    border-radius: 0 14px 14px 0;
}

.g1962-table td:last-child {
    border-radius: 14px 0 0 14px;
}

.g1962-status {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--g1962-blue-mid);
    background: rgba(47,128,237,.10);
    font-size: 12px;
    font-weight: 950;
}

.g1962-btn,
.g1962-btn:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 15px;
    border: 0;
    background: linear-gradient(135deg, var(--g1962-lime), #ddff85);
    color: var(--g1962-lime-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 1000;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(111,163,0,.16);
}

.g1962-btn-blue,
.g1962-btn-blue:visited {
    background: linear-gradient(135deg, var(--g1962-blue-main), #62a7ff);
    color: #fff;
    box-shadow: 0 12px 28px rgba(47,128,237,.22);
}

.g1962-btn-soft,
.g1962-btn-soft:visited {
    background: rgba(47,128,237,.10);
    color: var(--g1962-blue-mid);
    box-shadow: none;
}

.g1962-form {
    display: grid;
    gap: 10px;
}

.g1962-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.g1962-field {
    width: 100%;
    border-radius: 15px;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--g1962-text);
    font-size: 13px;
    font-weight: 750;
    outline: none;
}

textarea.g1962-field {
    min-height: 92px;
    resize: vertical;
}

.g1962-search {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 10px;
    margin-bottom: 12px;
}

.g1962-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.g1962-mini {
    border-radius: 18px;
    padding: 14px;
    background: rgba(47,128,237,.06);
    border: 1px solid var(--g1962-border);
}

.g1962-mini span {
    display: block;
    color: var(--g1962-muted);
    font-size: 11px;
    font-weight: 850;
    margin-bottom: 7px;
}

.g1962-mini strong {
    display: block;
    color: var(--g1962-blue-dark);
    font-size: 14px;
    font-weight: 1000;
    word-break: break-word;
}

.g1962-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.g1962-action-card {
    border: 0;
    text-align: right;
    cursor: pointer;
    border-radius: 20px;
    padding: 15px;
    background: rgba(47,128,237,.06);
    border: 1px solid var(--g1962-border);
    min-height: 104px;
}

.g1962-action-card b {
    display: block;
    color: var(--g1962-blue-dark);
    font-size: 14px;
    font-weight: 1000;
    margin-bottom: 7px;
}

.g1962-action-card span {
    display: block;
    color: var(--g1962-muted);
    font-size: 12px;
    line-height: 1.8;
    font-weight: 700;
}

.g1962-chat {
    display: grid;
    gap: 10px;
}

.g1962-bubble {
    max-width: 78%;
    border-radius: 18px;
    padding: 12px 14px;
    color: var(--g1962-text);
    line-height: 1.9;
    font-size: 13px;
    font-weight: 750;
}

.g1962-bubble.manager {
    margin-right: auto;
    background: rgba(47,128,237,.10);
}

.g1962-meta {
    display: block;
    margin-top: 6px;
    color: var(--g1962-muted);
    font-size: 10px;
    font-weight: 700;
}

.g1962-notice {
    margin-bottom: 12px;
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(184,255,44,.24);
    border: 1px solid rgba(111,163,0,.16);
    color: var(--g1962-lime-text);
    font-weight: 900;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .g1962-shell {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .g1962-stats,
    .g1962-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .g1962-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .g1962-shell {
        grid-template-columns: 1fr;
    }

    .g1962-sidebar {
        position: relative;
        top: auto;
        overflow-x: auto;
        padding: 10px;
    }

    .g1962-brand {
        display: none;
    }

    .g1962-menu {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
    }

    .g1962-tab {
        width: auto;
        min-width: max-content;
        flex: 0 0 auto;
        scroll-snap-align: start;
        background: rgba(255,255,255,.66);
        border: 1px solid rgba(255,255,255,.88);
        box-shadow: 0 10px 24px rgba(47,128,237,.10);
    }

    .g1962-title-row {
        flex-direction: column;
    }

    .g1962-pills {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .g1962-app {
        margin: 16px auto 28px;
        padding: 0 10px;
    }

    .g1962-main,
    .g1962-sidebar,
    .g1962-top,
    .g1962-card {
        border-radius: 20px;
    }

    .g1962-main {
        padding: 12px;
        min-height: 0;
    }

    .g1962-stats,
    .g1962-actions,
    .g1962-mini-grid,
    .g1962-grid-2,
    .g1962-search {
        grid-template-columns: 1fr;
    }

    .g1962-bubble {
        max-width: 100%;
    }
}

:root {
    --g1962-blue-main: #2f80ed;
    --g1962-blue-dark: #123a56;
    --g1962-blue-mid: #226ebc;
    --g1962-lime: #b7ff2a;
    --g1962-lime-text: #101900;
    --g1962-text: #101d2c;
    --g1962-muted: #6d8192;
    --g1962-border: #dfe9f1;
    --g1962-border-2: #cbdce8;
    --g1962-glass: #fff;
    --g1962-glass-strong: #fff;
    --g1962-shadow: 0 16px 45px rgba(18, 58, 86, .08);
    --g1962-shadow-soft: 0 7px 22px rgba(18, 58, 86, .055);
}

.g1962-experience-v2:has(.g1962-app) {
    background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%) !important;
}

.g1962-app,
.g1962-app * { box-sizing: border-box; }

.g1962-app {
    max-width: 1280px !important;
    margin: 26px auto 48px !important;
    padding: 0 14px;
    color: var(--g1962-text) !important;
}

.g1962-app::before { display: none !important; }

.g1962-app .g1962-shell {
    grid-template-columns: 224px minmax(0, 1fr) !important;
    gap: 15px !important;
}

.g1962-app .g1962-sidebar,
.g1962-app .g1962-main,
.g1962-app .g1962-top,
.g1962-app .g1962-stat,
.g1962-app .g1962-card,
.g1962-app .g1962-field,
.g1962-app .g1962-table td,
.g1962-app .g1962-bubble {
    border: 1px solid var(--g1962-border) !important;
    background: #fff !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.g1962-app .g1962-sidebar {
    top: 18px !important;
    padding: 10px !important;
    border-radius: 16px !important;
    box-shadow: var(--g1962-shadow-soft) !important;
}

.g1962-app .g1962-main {
    padding: 15px !important;
    border-radius: 18px !important;
    min-height: 0 !important;
    min-width: 0;
    box-shadow: var(--g1962-shadow-soft) !important;
}

.g1962-app .g1962-brand {
    margin-bottom: 9px !important;
    padding: 13px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #123a56, #226ebc) !important;
}

.g1962-app .g1962-brand b { color: #fff !important; font-size: 16px !important; }
.g1962-app .g1962-brand span { color: #d8e9f7 !important; font-size: 10.5px !important; }
.g1962-app .g1962-menu { gap: 3px !important; }

.g1962-app .g1962-tab {
    min-height: 43px !important;
    padding: 7px 8px !important;
    border-radius: 10px !important;
    color: #40586b !important;
    font-size: 12px !important;
    font-weight: 750 !important;
}

.g1962-app .g1962-tab i {
    width: 29px !important;
    height: 29px !important;
    flex-basis: 29px !important;
    border-radius: 8px !important;
    background: #f0f6fb !important;
    color: var(--g1962-blue-main) !important;
}

.g1962-app .g1962-tab:hover { background: #f5f9fc !important; }

.g1962-app .g1962-tab.is-active {
    background: #edf6ff !important;
    color: var(--g1962-blue-main) !important;
    box-shadow: inset 3px 0 0 var(--g1962-blue-main) !important;
}

.g1962-app .g1962-tab.is-active i {
    background: var(--g1962-blue-main) !important;
    color: #fff !important;
}

.g1962-app .g1962-top {
    margin-bottom: 11px !important;
    padding: 18px 20px !important;
    border-radius: 14px !important;
    background: linear-gradient(105deg, #fff 15%, #edf6ff 100%) !important;
}

.g1962-app .g1962-kicker {
    margin-bottom: 6px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--g1962-blue-main) !important;
    font-size: 9px !important;
    letter-spacing: .07em;
}

.g1962-app .g1962-title h1 {
    margin-bottom: 5px !important;
    color: var(--g1962-blue-dark) !important;
    font-size: clamp(20px, 2.4vw, 27px) !important;
}

.g1962-app .g1962-title p { color: var(--g1962-muted) !important; font-size: 11.5px !important; }
.g1962-app .g1962-pills { display: none !important; }

.g1962-v2-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: -2px 0 11px;
    padding: 10px;
    border: 1px solid var(--g1962-border);
    border-radius: 12px;
    background: #fff;
}

.g1962-v2-tools a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #cbdce8;
    border-radius: 8px;
    background: #fff;
    color: var(--g1962-blue-main);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
}

.g1962-v2-tools a:hover { border-color: var(--g1962-blue-main); background: #f5f9ff; }
.g1962-v2-tools a.is-primary { border-color: var(--g1962-blue-main); background: var(--g1962-blue-main); color: #fff; }

.g1962-app .g1962-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-bottom: 11px !important;
}

.g1962-app .g1962-stat {
    min-height: 78px !important;
    padding: 12px !important;
    border-radius: 12px !important;
}

.g1962-app .g1962-stat span { margin-bottom: 5px !important; color: var(--g1962-muted) !important; font-size: 10px !important; }
.g1962-app .g1962-stat strong { color: var(--g1962-blue-dark) !important; font-size: 17px !important; }

.g1962-app .g1962-card {
    margin-bottom: 10px !important;
    padding: 15px !important;
    border-radius: 13px !important;
}

.g1962-app .g1962-card h2 { color: var(--g1962-blue-dark) !important; font-size: 17px !important; }
.g1962-app .g1962-note { margin-bottom: 10px !important; color: var(--g1962-muted) !important; font-size: 11.5px !important; }

.g1962-app .g1962-table {
    min-width: 670px !important;
    border-spacing: 0 !important;
    border: 1px solid var(--g1962-border);
    border-radius: 10px;
    overflow: hidden;
}

.g1962-app .g1962-table th {
    padding: 10px !important;
    background: #f5f8fb;
    color: #617789 !important;
    font-size: 10.5px !important;
}

.g1962-app .g1962-table td {
    padding: 11px 10px !important;
    border: 0 !important;
    border-top: 1px solid var(--g1962-border) !important;
    border-radius: 0 !important;
    color: #283c4d !important;
    font-size: 11.5px !important;
}

.g1962-app .g1962-table tbody tr:hover td { background: #fbfdff !important; }
.g1962-app .g1962-status { padding: 5px 8px !important; border-radius: 7px !important; font-size: 10px !important; }

.g1962-app .g1962-btn,
.g1962-app .g1962-btn:visited {
    min-height: 39px !important;
    padding: 8px 14px !important;
    border-radius: 9px !important;
    background: var(--g1962-lime) !important;
    color: var(--g1962-lime-text) !important;
    box-shadow: none !important;
    font-size: 11.5px !important;
}

.g1962-app .g1962-btn-blue,
.g1962-app .g1962-btn-blue:visited {
    background: var(--g1962-blue-main) !important;
    color: #fff !important;
}

.g1962-app .g1962-field {
    min-height: 42px !important;
    padding: 9px 11px !important;
    border: 1px solid #cbdbe6 !important;
    border-radius: 9px !important;
    color: var(--g1962-text) !important;
    font-size: 12px !important;
}

.g1962-app .g1962-field:focus {
    border-color: var(--g1962-blue-main) !important;
    box-shadow: 0 0 0 3px rgba(47, 128, 237, .1) !important;
}

.g1962-app .g1962-mini-grid { gap: 8px !important; }
.g1962-app .g1962-mini { padding: 12px !important; border-radius: 10px !important; background: #f7fafc !important; }
.g1962-app .g1962-actions { gap: 8px !important; }
.g1962-app .g1962-action-card { min-height: 90px !important; padding: 12px !important; border-radius: 11px !important; background: #f7fafc !important; }
.g1962-app .g1962-empty { padding: 13px !important; border-radius: 10px !important; background: #f8fbfd !important; }

/* Panel pages own their heading; remove Blocksy's duplicate page title and gap. */
body.g1962-panel-page .hero-section,
body.g1962-panel-page .page-title,
body.g1962-panel-page article.page > .entry-header,
body.g1962-panel-page .site-main > article > .entry-header {
    display: none !important;
}

body.g1962-panel-page #main,
body.g1962-panel-page main[data-vertical-spacing*="top"],
body.g1962-panel-page article.page {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Detailed tracking now lives inside its matching customer-panel tab. */
.g1962-app .g1962-card-service > .g1962tl,
.g1962-app .g1962-card-service > .g1962crs,
.g1962-app .g1962-card-service > .g1962rpay,
.g1962-app .g1962-card-service > .g1962csell,
.g1962-app .g1962-card-service > .g1962settle-customer {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.g1962-app .g1962-card-service > section + section {
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid var(--g1962-border) !important;
}

.g1962-app .g1962-card-service .g1962tl-card,
.g1962-app .g1962-card-service .g1962crs-card,
.g1962-app .g1962-card-service .g1962rpay-card,
.g1962-app .g1962-card-service .g1962csell-card,
.g1962-app .g1962-card-service .g1962settle-customer-card {
    border-color: var(--g1962-border) !important;
    border-radius: 11px !important;
    box-shadow: none !important;
}

/* One clean language for all public service forms and status timelines. */
[class^="g1962rep-"], [class*=" g1962rep-"],
[class^="g1962rdf-"], [class*=" g1962rdf-"],
[class^="g1962sell-"], [class*=" g1962sell-"],
[class^="g1962crs-"], [class*=" g1962crs-"],
[class^="g1962rpay-"], [class*=" g1962rpay-"],
[class^="g1962csell-"], [class*=" g1962csell-"] {
    box-sizing: border-box;
}

.g1962rep-box,
.g1962rdf-box,
.g1962sell-box,
.g1962crs-list,
.g1962rpay-list,
.g1962csell-list {
    max-width: 980px !important;
    margin-inline: auto !important;
    border-color: var(--g1962-border) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: var(--g1962-shadow-soft) !important;
}

.g1962rep-head,
.g1962rdf-head,
.g1962sell-head,
.g1962crs-head,
.g1962rpay-head,
.g1962csell-head {
    border-radius: 14px !important;
    background: linear-gradient(110deg, #fff, #edf6ff) !important;
}

.g1962rep-field input,
.g1962rep-field select,
.g1962rep-field textarea,
.g1962rdf-field input,
.g1962rdf-field select,
.g1962rdf-field textarea,
.g1962sell-field input,
.g1962sell-field select,
.g1962sell-field textarea {
    border-color: #cbdbe6 !important;
    border-radius: 9px !important;
    background: #fff !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .g1962-app .g1962-shell { grid-template-columns: 1fr !important; }
    .g1962-app .g1962-sidebar { position: static !important; }
    .g1962-app .g1962-brand { display: none !important; }
    .g1962-app .g1962-menu { display: flex !important; overflow-x: auto; padding-bottom: 4px; }
    .g1962-app .g1962-tab { width: auto !important; min-width: max-content; }
    .g1962-app .g1962-stats { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 600px) {
    .g1962-app { margin-top: 14px !important; padding: 0 8px; }
    .g1962-app .g1962-main { padding: 9px !important; }
    .g1962-app .g1962-top { padding: 14px !important; }
    .g1962-app .g1962-stats { grid-template-columns: 1fr 1fr !important; }
    .g1962-app .g1962-mini-grid,
    .g1962-app .g1962-actions,
    .g1962-app .g1962-grid-2 { grid-template-columns: 1fr !important; }
    .g1962-app .g1962-search { grid-template-columns: 1fr !important; }
    .g1962-v2-tools { display: grid; grid-template-columns: 1fr 1fr; }
}
