.jlcb-wrap,
.jlcb-admin-wrap,
.jlcb-wrap * {
    box-sizing: border-box;
}

.jlcb-site {
    --jlcb-bg: #f5f7fb;
    --jlcb-card: #ffffff;
    --jlcb-text: #101828;
    --jlcb-muted: #667085;
    --jlcb-line: #e5e7eb;
    --jlcb-primary: #0f766e;
    --jlcb-primary-dark: #115e59;
    --jlcb-accent: #f59e0b;
    --jlcb-soft: #ecfdf5;
    font-family: inherit;
    color: var(--jlcb-text);
}

.jlcb-site a {
    text-decoration: none;
}

.jlcb-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.jlcb-card,
.jlcb-panel,
.jlcb-login-box,
.jlcb-match-card,
.jlcb-rules-wrap,
.jlcb-ranking-wrap,
.jlcb-games-wrap,
.jlcb-auth-card,
.jlcb-flow-card,
.jlcb-scoreboard-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(16,24,40,.06);
}

.jlcb-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
}

.jlcb-card span,
.jlcb-panel p,
.jlcb-flow-card p,
.jlcb-scoreboard-card p {
    color: #64748b;
}

.jlcb-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
    gap: 18px;
    margin-top: 18px;
}

.jlcb-actions-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 16px 0;
}

.jlcb-actions-row form {
    margin: 0;
}

.jlcb-shortcodes code {
    display: inline-block;
    margin: 4px 8px 4px 0;
}

.jlcb-admin-wrap details summary {
    cursor: pointer;
    color: #2271b1;
}

.jlcb-danger-box {
    border: 1px solid #d63638;
    background: #fff5f5;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

.jlcb-danger-box ul {
    margin-left: 18px;
    list-style: disc;
}

.jlcb-message {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.jlcb-message-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.jlcb-eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(15,118,110,.10);
    color: #0f766e;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jlcb-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 15%, rgba(245,158,11,.20), transparent 30%),
        linear-gradient(135deg, #052e2b 0%, #0f766e 56%, #14b8a6 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.jlcb-hero:after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    border: 44px solid rgba(255,255,255,.08);
}

.jlcb-hero-content,
.jlcb-hero-side {
    position: relative;
    z-index: 1;
}

.jlcb-brand-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 58px;
    padding: 12px 16px;
    margin-bottom: 18px;
    background: rgba(255,255,255,.96);
    border-radius: 16px;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.jlcb-brand-card img {
    display: block;
    max-width: min(220px, 60vw);
    max-height: 72px;
    object-fit: contain;
}

.jlcb-hero h1 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
}

.jlcb-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
}

.jlcb-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.jlcb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.jlcb-btn:hover {
    transform: translateY(-1px);
}

.jlcb-btn-primary {
    background: var(--jlcb-primary);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(15,118,110,.26);
}

.jlcb-hero .jlcb-btn-primary {
    background: #fff;
    color: #0f766e !important;
}

.jlcb-btn-secondary {
    background: rgba(255,255,255,.14);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.30);
}

.jlcb-site:not(.jlcb-home) .jlcb-btn-secondary,
.jlcb-login-box .jlcb-btn-secondary {
    background: #f8fafc;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}

.jlcb-demo-badge {
    display: inline-flex;
    margin-top: 16px;
    background: rgba(245,158,11,.18);
    border: 1px solid rgba(245,158,11,.35);
    color: #fffbeb;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: 13px;
}

.jlcb-hero-side {
    display: grid;
    gap: 14px;
    align-content: center;
}

.jlcb-scoreboard-card {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.22);
    color: #fff;
    backdrop-filter: blur(14px);
}

.jlcb-scoreboard-card span,
.jlcb-scoreboard-card p {
    color: rgba(255,255,255,.78);
}

.jlcb-scoreboard-card strong {
    display: block;
    margin: 8px 0;
    font-size: 42px;
    line-height: 1;
}

.jlcb-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.jlcb-stat-grid div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    text-align: center;
    color: #fff;
}

.jlcb-stat-grid strong {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.jlcb-stat-grid span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
}

.jlcb-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 22px 0;
}

.jlcb-flow-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #0f766e;
    font-weight: 900;
}

.jlcb-flow-card h3,
.jlcb-auth-card h3 {
    margin: 14px 0 8px;
    font-size: 22px;
}

.jlcb-home-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.jlcb-home-links a {
    padding: 11px 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 800;
}

.jlcb-access-intro,
.jlcb-section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
}

.jlcb-access-intro h2,
.jlcb-section-title h2,
.jlcb-dashboard-header h2 {
    margin: 12px 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.03em;
}

.jlcb-access-intro p,
.jlcb-section-title p,
.jlcb-dashboard-header p {
    color: var(--jlcb-muted);
}

.jlcb-access-grid {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr);
    gap: 18px;
    align-items: start;
}

.jlcb-auth-card {
    display: grid;
    gap: 12px;
}

.jlcb-auth-card-primary {
    border: 1px solid rgba(15,118,110,.25);
    box-shadow: 0 18px 45px rgba(15,118,110,.10);
}

.jlcb-auth-card label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-weight: 700;
}

.jlcb-auth-card small {
    color: #64748b;
    font-weight: 500;
}

.jlcb-auth-card input[type="text"],
.jlcb-auth-card input[type="email"],
.jlcb-auth-card input[type="password"],
.jlcb-auth-card input[type="url"],
.jlcb-auth-card input[type="number"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}

.jlcb-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.jlcb-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    flex-direction: row;
    gap: 8px !important;
    font-weight: 600 !important;
    color: #475569 !important;
}

.jlcb-check input {
    margin-top: 3px;
}

.jlcb-small-link {
    font-size: 13px;
    color: var(--jlcb-primary);
    font-weight: 700;
}

.jlcb-dashboard-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid #ccfbf1;
}

.jlcb-user-score {
    min-width: 160px;
    padding: 18px;
    border-radius: 18px;
    background: #0f766e;
    color: #fff;
    text-align: center;
}

.jlcb-user-score span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.jlcb-user-score strong {
    display: block;
    margin-top: 6px;
    font-size: 34px;
    line-height: 1;
}

.jlcb-panel-header {
    margin-bottom: 16px;
}

.jlcb-panel-header h2,
.jlcb-ranking-wrap h2,
.jlcb-games-wrap h2,
.jlcb-rules-wrap h2 {
    margin-top: 0;
}

.jlcb-match-list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.jlcb-match-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.jlcb-match-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(16,24,40,.08);
}

.jlcb-match-card.is-locked {
    background: #f8fafc;
}

.jlcb-match-card.is-demo {
    border-left: 5px solid #f59e0b;
}

.jlcb-match-card.is-demo .jlcb-match-footer span:last-child {
    color: #92400e;
    font-weight: 800;
}

.jlcb-match-meta,
.jlcb-match-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 13px;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f8fafc;
}

.jlcb-match-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 14px 0;
}

.jlcb-match-line strong {
    font-size: clamp(15px, 2vw, 18px);
    word-break: break-word;
}

.jlcb-match-line strong:first-child {
    text-align: right;
}

.jlcb-score-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jlcb-score-inputs input {
    width: 64px;
    text-align: center;
    padding: 9px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-weight: 800;
}

.jlcb-prediction-readonly {
    display: inline-flex;
    min-width: 82px;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 12px;
    background: #e2e8f0;
    font-weight: 800;
}

.jlcb-empty-state {
    text-align: center;
    padding: 34px 18px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
}

.jlcb-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.jlcb-table th,
.jlcb-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 13px 14px;
    text-align: left;
    vertical-align: middle;
}

.jlcb-table th {
    background: #f8fafc;
    font-weight: 800;
    color: #344054;
}

.jlcb-table tr:last-child td {
    border-bottom: 0;
}

.jlcb-submit {
    border-radius: 999px !important;
    padding: 8px 20px !important;
    min-height: 44px !important;
    font-weight: 800 !important;
    background: #0f766e !important;
    border-color: #0f766e !important;
}

.jlcb-rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.jlcb-rules-grid div {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

.jlcb-rules-grid strong {
    display: block;
    font-size: 28px;
    color: #0f766e;
}

.jlcb-rules-grid span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.jlcb-login-box {
    text-align: center;
}

@media (max-width: 980px) {
    .jlcb-cards,
    .jlcb-grid,
    .jlcb-hero,
    .jlcb-access-grid,
    .jlcb-flow-grid,
    .jlcb-rules-grid,
    .jlcb-dashboard-header {
        grid-template-columns: 1fr;
    }

    .jlcb-dashboard-header {
        text-align: center;
    }

    .jlcb-user-score {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .jlcb-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .jlcb-hero-actions,
    .jlcb-home-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jlcb-btn {
        width: 100%;
    }

    .jlcb-stat-grid,
    .jlcb-form-two {
        grid-template-columns: 1fr;
    }

    .jlcb-match-line {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .jlcb-match-line strong:first-child {
        text-align: center;
    }

    .jlcb-score-inputs {
        justify-content: center;
    }

    .jlcb-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .jlcb-auth-card,
    .jlcb-match-card,
    .jlcb-ranking-wrap,
    .jlcb-games-wrap,
    .jlcb-rules-wrap {
        padding: 16px;
        border-radius: 16px;
    }
}

.jlcb-autosave-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #0f766e;
}

.jlcb-match-card.is-saving {
    opacity: .88;
}

.jlcb-match-footer {
    justify-content: space-between;
    align-items: center;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.jlcb-save-status {
    min-width: 84px;
    justify-content: center;
    font-weight: 800;
}

.jlcb-save-status.is-saving {
    color: #92400e;
    background: #fffbeb;
}

.jlcb-save-status.is-saved {
    color: #065f46;
    background: #ecfdf5;
}

.jlcb-save-status.is-error {
    color: #991b1b;
    background: #fef2f2;
}

.jlcb-save-status.is-muted {
    color: #475569;
    background: #f8fafc;
}

.jlcb-clear-prediction {
    min-height: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 5px 10px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
}

.jlcb-clear-prediction:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.jlcb-pred-input:focus {
    outline: 0;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15,118,110,.14);
}

@media (max-width: 720px) {
    .jlcb-match-footer,
    .jlcb-match-footer-info,
    .jlcb-match-actions {
        justify-content: center;
    }

    .jlcb-save-status,
    .jlcb-clear-prediction {
        width: auto;
    }
}

/* v1.0.7 — modo independente do Elementor, menu interno e UX compacta */
.jlcb-page .entry-title,
.jlcb-page .page-title,
.jlcb-page .wp-block-post-title,
.jlcb-page .elementor-page-title,
.jlcb-page .page-header,
.jlcb-page .entry-header {
    display: none !important;
}

.jlcb-page .site-main,
.jlcb-page main.site-main,
.jlcb-page .page-content,
.jlcb-page .entry-content {
    width: 100% !important;
    max-width: none !important;
}

.jlcb-page .entry-content > .jlcb-wrap,
.jlcb-wrap.jlcb-site {
    width: min(1180px, calc(100% - 28px));
    margin-left: auto;
    margin-right: auto;
}

.jlcb-topnav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 0 0 18px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 30px rgba(16,24,40,.05);
}

.jlcb-topnav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 42px;
    padding: 6px 8px;
    border-radius: 13px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
}

.jlcb-topnav-brand img {
    display: block;
    max-width: 132px;
    max-height: 38px;
    object-fit: contain;
}

.jlcb-topnav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.jlcb-topnav-links::-webkit-scrollbar {
    display: none;
}

.jlcb-topnav-links a,
.jlcb-topnav-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.jlcb-topnav-links a.is-active {
    background: #ecfdf5;
    color: #0f766e;
}

.jlcb-topnav-action {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}

.jlcb-topnav-action .jlcb-nav-cta {
    background: #0f766e;
    color: #fff !important;
}

.jlcb-topnav-action .jlcb-nav-logout {
    background: #f8fafc;
    color: #64748b !important;
    border: 1px solid #e2e8f0;
}

.jlcb-panel-wrap .jlcb-dashboard-header {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 18px;
}

.jlcb-panel-wrap .jlcb-dashboard-header h2 {
    margin: 8px 0 4px;
    font-size: clamp(24px, 3vw, 34px);
}

.jlcb-panel-wrap .jlcb-dashboard-header p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.35;
}

.jlcb-panel-wrap .jlcb-user-score {
    min-width: 132px;
    padding: 12px;
    border-radius: 16px;
}

.jlcb-panel-wrap .jlcb-user-score strong {
    font-size: 26px;
}

.jlcb-match-list {
    gap: 8px;
}

.jlcb-match-card {
    padding: 10px 12px !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 18px rgba(16,24,40,.04) !important;
}

.jlcb-match-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(16,24,40,.07) !important;
}

.jlcb-match-card.is-demo {
    border-left-width: 3px;
}

.jlcb-match-meta,
.jlcb-match-footer {
    gap: 6px;
    font-size: 11px;
    line-height: 1.2;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    min-height: 20px;
    padding: 2px 7px;
}

.jlcb-match-line {
    grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
    gap: 8px;
    margin: 8px 0;
}

.jlcb-match-line strong {
    font-size: 14px;
    line-height: 1.15;
}

.jlcb-score-inputs {
    gap: 5px;
}

.jlcb-score-inputs input {
    width: 44px;
    min-height: 38px;
    padding: 5px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1;
}

.jlcb-score-inputs span {
    font-size: 13px;
    color: #64748b;
    font-weight: 900;
}

.jlcb-match-footer {
    margin-top: 2px;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    gap: 5px;
}

.jlcb-save-status {
    min-width: 64px;
    font-size: 11px;
    min-height: 24px !important;
}

.jlcb-clear-prediction {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
}

.jlcb-autosave-hint {
    font-size: 12px;
}

.jlcb-pred-input::placeholder {
    color: #94a3b8;
}

@media (max-width: 760px) {
    .jlcb-page .entry-content > .jlcb-wrap,
    .jlcb-wrap.jlcb-site {
        width: min(100% - 18px, 1180px);
    }

    .jlcb-topnav {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
    }

    .jlcb-topnav-brand {
        justify-self: center;
    }

    .jlcb-topnav-links {
        justify-content: flex-start;
        padding-bottom: 2px;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .jlcb-topnav-action {
        justify-content: center;
    }

    .jlcb-panel-wrap .jlcb-dashboard-header {
        text-align: left;
        padding: 12px;
    }

    .jlcb-panel-wrap .jlcb-user-score {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .jlcb-panel-wrap .jlcb-user-score strong {
        margin: 0;
        font-size: 24px;
    }

    .jlcb-match-card {
        padding: 9px 10px !important;
    }

    .jlcb-match-meta {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1px;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 6px;
        text-align: initial;
    }

    .jlcb-match-line strong {
        font-size: 12px;
    }

    .jlcb-match-line strong:first-child {
        text-align: right;
    }

    .jlcb-score-inputs input {
        width: 39px;
        min-height: 36px;
        font-size: 15px;
    }

    .jlcb-match-footer,
    .jlcb-match-footer-info,
    .jlcb-match-actions {
        justify-content: flex-start;
    }

    .jlcb-match-footer {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .jlcb-match-line {
        grid-template-columns: minmax(0, .95fr) auto minmax(0, .95fr);
    }

    .jlcb-score-inputs input {
        width: 36px;
    }

    .jlcb-match-footer {
        grid-template-columns: 1fr;
    }
}

/* v1.0.8 — template próprio, menu responsivo e UX compacta sem Elementor */
html body.jlcb-template-clean {
    margin: 0 !important;
    background: #f4f7fb !important;
    color: #0f172a;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.jlcb-template-clean.admin-bar .jlcb-topnav {
    top: 44px;
}

.jlcb-app-shell {
    width: 100%;
    min-height: 100vh;
    padding: 18px 14px 42px;
    box-sizing: border-box;
}

body.jlcb-page .entry-title,
body.jlcb-page .page-title,
body.jlcb-page h1.entry-title,
body.jlcb-page .wp-block-post-title,
body.jlcb-page .elementor-page-title,
body.jlcb-page header.page-header,
body.jlcb-page .entry-header,
body.jlcb-page .page-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.jlcb-page .site-main,
body.jlcb-page main.site-main,
body.jlcb-page .page-content,
body.jlcb-page .entry-content,
body.jlcb-page .hentry,
body.jlcb-page article.page {
    max-width: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.jlcb-page .entry-content > *:first-child,
body.jlcb-template-clean .jlcb-wrap:first-child {
    margin-top: 0 !important;
}

body.jlcb-template-clean .jlcb-wrap.jlcb-site,
body.jlcb-page .entry-content > .jlcb-wrap,
.jlcb-wrap.jlcb-site {
    width: min(1160px, calc(100% - 8px)) !important;
    margin: 0 auto !important;
    box-sizing: border-box;
}

.jlcb-topnav,
body.jlcb-page .jlcb-topnav {
    position: sticky;
    top: 12px;
    z-index: 50;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 14px !important;
    padding: 8px !important;
    border: 1px solid rgba(226, 232, 240, .95) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10) !important;
    backdrop-filter: blur(14px);
}

.jlcb-topnav a {
    text-decoration: none !important;
}

.jlcb-topnav-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.jlcb-topnav-brand,
body.jlcb-page .jlcb-topnav-brand {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 46px !important;
    min-height: 38px !important;
    max-width: 190px;
    padding: 5px 10px !important;
    border-radius: 17px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    overflow: hidden;
}

.jlcb-topnav-brand img {
    max-width: 146px !important;
    max-height: 34px !important;
    object-fit: contain;
}

.jlcb-topnav-links,
body.jlcb-page .jlcb-topnav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.jlcb-topnav-links::-webkit-scrollbar {
    display: none;
}

.jlcb-topnav-links a,
.jlcb-topnav-action a,
body.jlcb-page .jlcb-topnav-links a,
body.jlcb-page .jlcb-topnav-action a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.jlcb-topnav-links a:hover,
.jlcb-topnav-action a:hover {
    background: #f1f5f9 !important;
    color: #0f766e !important;
    transform: translateY(-1px);
}

.jlcb-topnav-links a.is-active,
body.jlcb-page .jlcb-topnav-links a.is-active {
    background: linear-gradient(135deg, #0f766e, #14b8a6) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 118, 110, .24);
}

.jlcb-topnav-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 0 0 auto;
}

.jlcb-topnav-action .jlcb-nav-cta,
body.jlcb-page .jlcb-topnav-action .jlcb-nav-cta {
    background: #0f766e !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 118, 110, .22);
}

.jlcb-topnav-action .jlcb-nav-logout,
body.jlcb-page .jlcb-topnav-action .jlcb-nav-logout {
    background: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
}

.jlcb-topnav-toggle {
    display: none;
    width: 39px;
    height: 39px;
    border: 0;
    border-radius: 14px;
    background: #0f766e;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.jlcb-topnav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
}

.jlcb-hero {
    min-height: auto !important;
    padding: clamp(28px, 5vw, 56px) !important;
    border-radius: 28px !important;
}

.jlcb-brand-card {
    width: 120px !important;
    height: 76px !important;
}

.jlcb-hero h1 {
    font-size: clamp(38px, 6vw, 68px) !important;
    line-height: .98 !important;
}

.jlcb-panel-wrap .jlcb-dashboard-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 12px 14px !important;
    margin-bottom: 10px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06) !important;
}

.jlcb-panel-wrap .jlcb-dashboard-header h2 {
    margin: 4px 0 3px !important;
    font-size: clamp(22px, 3vw, 31px) !important;
    letter-spacing: -.04em;
}

.jlcb-panel-wrap .jlcb-dashboard-header p {
    margin: 2px 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    color: #64748b;
}

.jlcb-panel-wrap .jlcb-user-score {
    min-width: 118px !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
}

.jlcb-panel-wrap .jlcb-user-score strong {
    font-size: 24px !important;
}

.jlcb-match-list {
    display: grid !important;
    gap: 7px !important;
}

.jlcb-match-card {
    padding: 8px 10px !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .045) !important;
}

.jlcb-match-card:hover {
    transform: none !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .07) !important;
}

.jlcb-match-meta {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
    color: #64748b;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    min-height: 18px !important;
    padding: 2px 6px !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
}

.jlcb-match-line {
    display: grid !important;
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 6px 0 !important;
}

.jlcb-match-line strong {
    font-size: 13.5px !important;
    line-height: 1.15 !important;
    letter-spacing: -.01em;
}

.jlcb-match-line strong:first-child {
    text-align: right;
}

.jlcb-match-line strong:last-child {
    text-align: left;
}

.jlcb-score-inputs {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    padding: 3px 5px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.jlcb-score-inputs input,
.jlcb-score-inputs .jlcb-pred-input {
    width: 38px !important;
    min-height: 34px !important;
    height: 34px !important;
    padding: 3px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    background: #fff !important;
    text-align: center !important;
    appearance: textfield;
    -moz-appearance: textfield;
}

.jlcb-score-inputs input::-webkit-inner-spin-button,
.jlcb-score-inputs input::-webkit-outer-spin-button {
    opacity: 1;
}

.jlcb-score-inputs input::placeholder {
    color: transparent !important;
}

.jlcb-score-inputs > span {
    min-width: 10px;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.jlcb-match-footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 6px !important;
    margin-top: 2px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px !important;
}

.jlcb-save-status {
    min-width: 0 !important;
    min-height: 22px !important;
    padding: 3px 7px !important;
    font-size: 10.5px !important;
    border-radius: 999px !important;
}

.jlcb-clear-prediction {
    min-height: 22px !important;
    padding: 3px 8px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
}

@media (max-width: 780px) {
    .jlcb-app-shell {
        padding: 10px 8px 28px;
    }

    body.jlcb-template-clean.admin-bar .jlcb-topnav {
        top: 46px;
    }

    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 7px !important;
        top: 8px;
        padding: 7px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head {
        width: 100%;
        justify-content: space-between;
    }

    .jlcb-topnav-toggle {
        display: inline-flex !important;
    }

    .jlcb-topnav-links,
    .jlcb-topnav-action {
        display: none !important;
    }

    .jlcb-topnav.is-open .jlcb-topnav-links,
    .jlcb-topnav.is-open .jlcb-topnav-action {
        display: flex !important;
    }

    .jlcb-topnav.is-open .jlcb-topnav-links {
        justify-content: flex-start !important;
        overflow-x: auto;
        padding: 2px 0 1px;
    }

    .jlcb-topnav.is-open .jlcb-topnav-action {
        justify-content: flex-start !important;
        border-top: 1px solid #e2e8f0;
        padding-top: 7px;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .jlcb-hero {
        padding: 24px 18px !important;
        border-radius: 22px !important;
    }

    .jlcb-panel-wrap .jlcb-dashboard-header {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        padding: 11px !important;
    }

    .jlcb-panel-wrap .jlcb-user-score {
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .jlcb-match-card {
        padding: 8px !important;
        border-radius: 13px !important;
    }

    .jlcb-match-meta {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .jlcb-match-meta::-webkit-scrollbar {
        display: none;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
        gap: 5px !important;
        margin: 6px 0 !important;
    }

    .jlcb-match-line strong {
        font-size: 12px !important;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .jlcb-score-inputs {
        gap: 3px !important;
        padding: 2px 4px !important;
        border-radius: 12px !important;
    }

    .jlcb-score-inputs input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 34px !important;
        min-height: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .jlcb-match-footer {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .jlcb-match-footer-info {
        overflow: hidden;
    }
}

@media (max-width: 430px) {
    body.jlcb-template-clean .jlcb-wrap.jlcb-site,
    .jlcb-wrap.jlcb-site {
        width: 100% !important;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, .9fr) auto minmax(0, .9fr) !important;
    }

    .jlcb-match-line strong {
        font-size: 11.5px !important;
    }

    .jlcb-score-inputs input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 32px !important;
    }

    .jlcb-match-footer {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .jlcb-match-actions {
        justify-content: flex-start !important;
    }
}

/* v1.0.9 - controles de placar mais claros e salvamento com validação */
.jlcb-score-inputs {
    gap: 6px !important;
    padding: 4px 6px !important;
    background: #f8fafc !important;
}

.jlcb-score-control {
    display: inline-grid !important;
    grid-template-columns: 22px 42px 22px !important;
    align-items: center !important;
    gap: 3px !important;
    padding: 2px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7) !important;
}

.jlcb-score-step {
    width: 22px !important;
    height: 28px !important;
    min-width: 22px !important;
    min-height: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #eef4f8 !important;
    color: #0f766e !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    appearance: none !important;
}

.jlcb-score-step:hover,
.jlcb-score-step:focus {
    background: #dff7f0 !important;
    color: #075e55 !important;
    outline: none !important;
}

.jlcb-score-inputs input,
.jlcb-score-inputs .jlcb-pred-input,
.jlcb-score-control .jlcb-pred-input {
    width: 42px !important;
    height: 32px !important;
    min-height: 32px !important;
    border: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: #0f172a !important;
    font-weight: 900 !important;
    text-align: center !important;
}

.jlcb-score-inputs input:focus,
.jlcb-score-inputs .jlcb-pred-input:focus,
.jlcb-score-control .jlcb-pred-input:focus {
    outline: 2px solid rgba(15,118,110,.25) !important;
    outline-offset: 1px !important;
}

.jlcb-score-inputs input::-webkit-inner-spin-button,
.jlcb-score-inputs input::-webkit-outer-spin-button {
    display: none !important;
    opacity: 0 !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.jlcb-score-inputs input[type=number] {
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.jlcb-score-separator,
.jlcb-score-inputs > .jlcb-score-separator {
    min-width: 10px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.jlcb-save-status.is-error {
    padding: 4px 7px !important;
    border-radius: 999px !important;
    white-space: normal !important;
    text-align: right !important;
}

@media (max-width: 640px) {
    .jlcb-score-inputs {
        gap: 4px !important;
        padding: 3px 4px !important;
    }

    .jlcb-score-control {
        grid-template-columns: 20px 36px 20px !important;
        gap: 2px !important;
        border-radius: 12px !important;
    }

    .jlcb-score-step {
        width: 20px !important;
        height: 26px !important;
        min-width: 20px !important;
        min-height: 26px !important;
        font-size: 15px !important;
    }

    .jlcb-score-control .jlcb-pred-input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 36px !important;
        height: 30px !important;
        min-height: 30px !important;
        font-size: 15px !important;
    }

    .jlcb-save-status.is-error {
        text-align: left !important;
        width: 100% !important;
    }
}

/* v1.0.10 - Ajustes de logo e menu sem Elementor */
.jlcb-topnav,
body.jlcb-page .jlcb-topnav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 8px !important;
}

.jlcb-topnav-head {
    flex: 0 1 auto !important;
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
}

.jlcb-topnav-toggle {
    display: none !important;
    visibility: hidden !important;
}

.jlcb-topnav-brand,
body.jlcb-page .jlcb-topnav-brand {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 72px !important;
    max-width: 160px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 6px 12px !important;
    overflow: hidden !important;
}

.jlcb-topnav-brand img,
body.jlcb-page .jlcb-topnav-brand img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 30px !important;
    object-fit: contain !important;
}

.jlcb-topnav-links,
body.jlcb-page .jlcb-topnav-links {
    display: flex !important;
    flex: 1 1 360px !important;
    min-width: 0 !important;
    justify-content: center !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.jlcb-topnav-action,
body.jlcb-page .jlcb-topnav-action {
    display: flex !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
}

.jlcb-brand-card,
body.jlcb-page .jlcb-brand-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 112px !important;
    min-height: 64px !important;
    max-width: 190px !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
}

.jlcb-brand-card img,
body.jlcb-page .jlcb-brand-card img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

@media (max-width: 720px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        position: sticky !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        padding: 8px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head {
        width: auto !important;
        flex: 0 1 auto !important;
    }

    .jlcb-topnav-brand,
    body.jlcb-page .jlcb-topnav-brand {
        max-width: 135px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 5px 10px !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-height: 28px !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        order: 2 !important;
        margin-left: auto !important;
        padding-top: 0 !important;
        border-top: 0 !important;
        display: flex !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links {
        order: 3 !important;
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 2px 0 0 !important;
        gap: 5px !important;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .jlcb-brand-card,
    body.jlcb-page .jlcb-brand-card {
        min-width: 96px !important;
        min-height: 52px !important;
        max-width: 150px !important;
        padding: 9px 10px !important;
        margin-bottom: 14px !important;
    }

    .jlcb-brand-card img,
    body.jlcb-page .jlcb-brand-card img {
        max-height: 42px !important;
    }

    .jlcb-hero h1 {
        font-size: clamp(34px, 12vw, 42px) !important;
        letter-spacing: -.045em !important;
    }
}

/* v1.0.11 - refinamento da home e controles de placar mais clean */
.jlcb-hero .jlcb-eyebrow,
body.jlcb-page .jlcb-hero .jlcb-eyebrow {
    color: #ffffff !important;
    background: rgba(255,255,255,.16) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: none !important;
}

.jlcb-title-kicker,
body.jlcb-page .jlcb-title-kicker {
    display: block !important;
    margin: 20px 0 2px !important;
    color: rgba(255,255,255,.9) !important;
    font-size: clamp(18px, 2vw, 24px) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
}

.jlcb-hero h1.jlcb-hero-title-compact,
body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
    margin-top: 0 !important;
    max-width: 100% !important;
    font-size: clamp(48px, 5.8vw, 86px) !important;
    line-height: .95 !important;
    letter-spacing: -.06em !important;
}

@media (min-width: 960px) {
    .jlcb-hero h1.jlcb-hero-title-compact,
    body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
        white-space: nowrap !important;
        font-size: clamp(50px, 5.2vw, 72px) !important;
    }
}

/* Remove caixas externas dos placares: ficam apenas botões e campo */
.jlcb-score-inputs,
body.jlcb-page .jlcb-score-inputs {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 8px !important;
}

.jlcb-score-control,
body.jlcb-page .jlcb-score-control {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.jlcb-score-step,
body.jlcb-page .jlcb-score-step {
    width: 26px !important;
    height: 30px !important;
    min-width: 26px !important;
    min-height: 30px !important;
    border: 1px solid #d7e6ef !important;
    border-radius: 10px !important;
    background: #eff9f7 !important;
    color: #00796f !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.jlcb-score-step:hover,
.jlcb-score-step:focus,
body.jlcb-page .jlcb-score-step:hover,
body.jlcb-page .jlcb-score-step:focus {
    background: #d9f7ef !important;
    border-color: #9bdccc !important;
    color: #055f56 !important;
    outline: none !important;
}

.jlcb-score-control .jlcb-pred-input,
.jlcb-score-inputs .jlcb-pred-input,
body.jlcb-page .jlcb-score-control .jlcb-pred-input,
body.jlcb-page .jlcb-score-inputs .jlcb-pred-input {
    width: 38px !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    border: 1px solid #b9c9d7 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 32px !important;
    text-align: center !important;
    box-shadow: none !important;
    appearance: none !important;
    -moz-appearance: textfield !important;
}

.jlcb-score-control .jlcb-pred-input:focus,
.jlcb-score-inputs .jlcb-pred-input:focus,
body.jlcb-page .jlcb-score-control .jlcb-pred-input:focus,
body.jlcb-page .jlcb-score-inputs .jlcb-pred-input:focus {
    border-color: #0f766e !important;
    outline: 3px solid rgba(15,118,110,.16) !important;
    outline-offset: 0 !important;
}

.jlcb-score-separator,
body.jlcb-page .jlcb-score-separator {
    min-width: 10px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 32px !important;
}

@media (max-width: 640px) {
    .jlcb-title-kicker,
    body.jlcb-page .jlcb-title-kicker {
        margin-top: 16px !important;
        font-size: 18px !important;
    }

    .jlcb-hero h1.jlcb-hero-title-compact,
    body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
        font-size: clamp(36px, 12vw, 46px) !important;
        line-height: .98 !important;
        white-space: normal !important;
    }

    .jlcb-score-inputs,
    body.jlcb-page .jlcb-score-inputs {
        gap: 5px !important;
    }

    .jlcb-score-step,
    body.jlcb-page .jlcb-score-step {
        width: 24px !important;
        height: 28px !important;
        min-width: 24px !important;
        min-height: 28px !important;
        font-size: 15px !important;
    }

    .jlcb-score-control .jlcb-pred-input,
    .jlcb-score-inputs .jlcb-pred-input,
    body.jlcb-page .jlcb-score-control .jlcb-pred-input,
    body.jlcb-page .jlcb-score-inputs .jlcb-pred-input {
        width: 34px !important;
        height: 30px !important;
        min-height: 30px !important;
        font-size: 14px !important;
        line-height: 30px !important;
    }
}

/* v1.0.12 - sanfonas por fase, simulação de data e correção robusta dos controles */
.jlcb-sim-date-note,
body.jlcb-page .jlcb-sim-date-note {
    margin: 6px 0 0 !important;
    font-size: 13px !important;
    color: #0f766e !important;
}

.jlcb-match-accordion-list,
body.jlcb-page .jlcb-match-accordion-list {
    display: grid !important;
    gap: 14px !important;
}

.jlcb-phase-accordion,
body.jlcb-page .jlcb-phase-accordion {
    border: 1px solid #dbe6ef !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04) !important;
    overflow: hidden !important;
}

.jlcb-phase-accordion > summary,
body.jlcb-page .jlcb-phase-accordion > summary {
    list-style: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 18px !important;
    background: linear-gradient(135deg, #f8fffd, #f3f7fb) !important;
    color: #0f172a !important;
    font-weight: 900 !important;
    user-select: none !important;
}

.jlcb-phase-accordion > summary::-webkit-details-marker,
body.jlcb-page .jlcb-phase-accordion > summary::-webkit-details-marker {
    display: none !important;
}

.jlcb-phase-accordion > summary::after,
body.jlcb-page .jlcb-phase-accordion > summary::after {
    content: '+' !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 999px !important;
    background: #e9f7f4 !important;
    color: #00796f !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.jlcb-phase-accordion[open] > summary::after,
body.jlcb-page .jlcb-phase-accordion[open] > summary::after {
    content: '−' !important;
}

.jlcb-phase-accordion > summary small,
body.jlcb-page .jlcb-phase-accordion > summary small {
    margin-left: auto !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #47627d !important;
    background: #ffffff !important;
    border: 1px solid #dbe6ef !important;
    border-radius: 999px !important;
    padding: 5px 10px !important;
}

.jlcb-phase-matches,
body.jlcb-page .jlcb-phase-matches {
    display: grid !important;
    gap: 8px !important;
    padding: 10px !important;
    background: #f4f7fb !important;
}

.jlcb-phase-matches .jlcb-match-card,
body.jlcb-page .jlcb-phase-matches .jlcb-match-card {
    margin: 0 !important;
}

.jlcb-score-step,
body.jlcb-page .jlcb-score-step {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 4 !important;
    -webkit-tap-highlight-color: transparent !important;
}

.jlcb-score-control,
body.jlcb-page .jlcb-score-control {
    position: relative !important;
    z-index: 3 !important;
}

@media (max-width: 700px) {
    .jlcb-phase-accordion > summary,
    body.jlcb-page .jlcb-phase-accordion > summary {
        padding: 12px 14px !important;
        font-size: 15px !important;
    }

    .jlcb-phase-matches,
    body.jlcb-page .jlcb-phase-matches {
        padding: 8px !important;
        gap: 8px !important;
    }
}

/* v1.0.15 - estabilidade dos controles e melhor espaçamento dos chips */
.jlcb-stat-chip,
body.jlcb-page .jlcb-stat-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
}

.jlcb-stat-chip > span,
body.jlcb-page .jlcb-stat-chip > span {
    padding: 0 !important;
    min-height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.jlcb-stat-chip strong,
body.jlcb-page .jlcb-stat-chip strong {
    display: inline-block !important;
    margin-left: 2px !important;
}

.jlcb-score-step,
.jlcb-clear-prediction,
body.jlcb-page .jlcb-score-step,
body.jlcb-page .jlcb-clear-prediction {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* v1.0.22 - UX compacto, ranking, desempenho e regras explicativas */
.jlcb-phase-accordion > summary span,
body.jlcb-page .jlcb-phase-accordion > summary span {
    letter-spacing: -.02em !important;
}

@media (min-width: 821px) {
    .jlcb-phase-matches .jlcb-match-card,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-card {
        display: grid !important;
        grid-template-columns: 245px minmax(380px, 1fr) 260px !important;
        align-items: center !important;
        gap: 12px !important;
        min-height: 82px !important;
        padding: 10px 14px !important;
    }

    .jlcb-phase-matches .jlcb-match-meta,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-meta {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-content: center !important;
        justify-items: start !important;
        gap: 4px !important;
        min-width: 0 !important;
    }

    .jlcb-phase-matches .jlcb-match-line,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line {
        margin: 0 !important;
        grid-template-columns: minmax(95px, 1fr) auto minmax(95px, 1fr) !important;
        gap: 8px !important;
    }

    .jlcb-phase-matches .jlcb-match-footer,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-footer {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: end !important;
        align-content: center !important;
        gap: 6px !important;
        margin: 0 !important;
    }

    .jlcb-phase-matches .jlcb-match-footer-info,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-footer-info,
    .jlcb-phase-matches .jlcb-match-actions,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-actions {
        justify-content: flex-end !important;
    }
}

.jlcb-match-meta span,
.jlcb-match-footer span,
body.jlcb-page .jlcb-match-meta span,
body.jlcb-page .jlcb-match-footer span {
    font-size: 10.5px !important;
}

.jlcb-stat-chip,
body.jlcb-page .jlcb-stat-chip {
    gap: 5px !important;
    background: #f8fafc !important;
}

.jlcb-stat-chip > span::after,
body.jlcb-page .jlcb-stat-chip > span::after {
    content: "" !important;
}

.jlcb-ranking-podium,
.jlcb-performance-grid,
.jlcb-rules-steps,
body.jlcb-page .jlcb-ranking-podium,
body.jlcb-page .jlcb-performance-grid,
body.jlcb-page .jlcb-rules-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 18px !important;
}

.jlcb-podium-card,
.jlcb-performance-card,
.jlcb-rules-steps > div,
body.jlcb-page .jlcb-podium-card,
body.jlcb-page .jlcb-performance-card,
body.jlcb-page .jlcb-rules-steps > div {
    background: #ffffff !important;
    border: 1px solid #dbe6ef !important;
    border-radius: 18px !important;
    padding: 18px !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .055) !important;
}

.jlcb-podium-card.is-current-user,
.jlcb-ranking-table tr.is-current-user,
body.jlcb-page .jlcb-podium-card.is-current-user,
body.jlcb-page .jlcb-ranking-table tr.is-current-user {
    background: #f0fdfa !important;
}

.jlcb-podium-position,
.jlcb-rank-badge,
.jlcb-rules-steps span,
body.jlcb-page .jlcb-podium-position,
body.jlcb-page .jlcb-rank-badge,
body.jlcb-page .jlcb-rules-steps span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: #0f766e !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    margin-bottom: 10px !important;
}

.jlcb-podium-card strong,
.jlcb-performance-card strong,
.jlcb-rules-steps strong,
body.jlcb-page .jlcb-podium-card strong,
body.jlcb-page .jlcb-performance-card strong,
body.jlcb-page .jlcb-rules-steps strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    letter-spacing: -.03em !important;
}

.jlcb-podium-card em,
.jlcb-performance-card span,
.jlcb-performance-card small,
.jlcb-rules-steps p,
body.jlcb-page .jlcb-podium-card em,
body.jlcb-page .jlcb-performance-card span,
body.jlcb-page .jlcb-performance-card small,
body.jlcb-page .jlcb-rules-steps p {
    display: block !important;
    margin-top: 6px !important;
    color: #47627d !important;
    font-style: normal !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.jlcb-performance-card.is-main,
body.jlcb-page .jlcb-performance-card.is-main {
    background: linear-gradient(135deg, #0f766e, #14b8a6) !important;
    color: #ffffff !important;
}

.jlcb-performance-card.is-main span,
.jlcb-performance-card.is-main strong,
body.jlcb-page .jlcb-performance-card.is-main span,
body.jlcb-page .jlcb-performance-card.is-main strong {
    color: #ffffff !important;
}

.jlcb-performance-note,
body.jlcb-page .jlcb-performance-note {
    margin: 0 0 18px !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    background: #ecfeff !important;
    border: 1px solid #ccfbf1 !important;
    color: #164e63 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.jlcb-section-title-small,
body.jlcb-page .jlcb-section-title-small {
    margin-top: 22px !important;
}

.jlcb-performance-table small,
body.jlcb-page .jlcb-performance-table small {
    display: block !important;
    margin-top: 3px !important;
    color: #64748b !important;
}

.jlcb-rules-modern .jlcb-section-title p,
body.jlcb-page .jlcb-rules-modern .jlcb-section-title p {
    max-width: 820px !important;
    color: #47627d !important;
}

.jlcb-rules-content,
body.jlcb-page .jlcb-rules-content {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 18px !important;
}

.jlcb-rules-content section,
body.jlcb-page .jlcb-rules-content section {
    padding: 18px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    border: 1px solid #dbe6ef !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .045) !important;
}

.jlcb-rules-content h3,
body.jlcb-page .jlcb-rules-content h3 {
    margin: 0 0 8px !important;
    font-size: 19px !important;
    letter-spacing: -.03em !important;
    color: #0f172a !important;
}

.jlcb-rules-content p,
body.jlcb-page .jlcb-rules-content p {
    margin: 0 !important;
    color: #47627d !important;
    line-height: 1.6 !important;
}

@media (max-width: 820px) {
    .jlcb-ranking-podium,
    .jlcb-performance-grid,
    .jlcb-rules-steps,
    .jlcb-rules-content,
    body.jlcb-page .jlcb-ranking-podium,
    body.jlcb-page .jlcb-performance-grid,
    body.jlcb-page .jlcb-rules-steps,
    body.jlcb-page .jlcb-rules-content {
        grid-template-columns: 1fr !important;
    }

    .jlcb-phase-matches .jlcb-match-card,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-card {
        padding: 10px !important;
        gap: 8px !important;
    }

    .jlcb-phase-matches .jlcb-match-line,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .jlcb-phase-matches .jlcb-match-line strong,
    .jlcb-phase-matches .jlcb-match-line strong:first-child,
    .jlcb-phase-matches .jlcb-match-line strong:last-child,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line strong,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line strong:first-child,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line strong:last-child {
        text-align: center !important;
    }

    .jlcb-phase-matches .jlcb-match-footer,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-footer {
        grid-template-columns: 1fr !important;
    }

    .jlcb-phase-matches .jlcb-match-footer-info,
    .jlcb-phase-matches .jlcb-match-actions,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-footer-info,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-actions {
        justify-content: center !important;
    }
}

/* v1.0.32 - ajustes de home, botões de acesso e opções de cores */
.jlcb-admin-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    max-width: 920px;
}

.jlcb-admin-color-grid label {
    display: grid;
    gap: 6px;
    font-weight: 600;
}

.jlcb-admin-color-grid input[type="color"] {
    width: 100%;
    max-width: 180px;
    height: 42px;
    padding: 2px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
}

.jlcb-auth-card .jlcb-btn,
.jlcb-auth-card button.jlcb-btn,
.jlcb-login-box .jlcb-btn {
    border-radius: 999px !important;
    min-height: 46px !important;
    padding: 12px 18px !important;
    font-weight: 900 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.jlcb-auth-card .jlcb-btn-primary,
.jlcb-auth-card button.jlcb-btn-primary,
.jlcb-login-box .jlcb-btn-primary {
    background: var(--jlcb-primary, #0f766e) !important;
    border: 1px solid var(--jlcb-primary, #0f766e) !important;
    color: #ffffff !important;
}

.jlcb-auth-card .jlcb-btn-primary:hover,
.jlcb-auth-card button.jlcb-btn-primary:hover,
.jlcb-login-box .jlcb-btn-primary:hover,
.jlcb-auth-card .jlcb-btn-primary:focus,
.jlcb-auth-card button.jlcb-btn-primary:focus,
.jlcb-login-box .jlcb-btn-primary:focus {
    background: var(--jlcb-primary-dark, #115e59) !important;
    border-color: var(--jlcb-primary-dark, #115e59) !important;
    color: #ffffff !important;
}

.jlcb-hero p {
    font-size: clamp(14px, 1.35vw, 18px) !important;
    line-height: 1.48 !important;
}

.jlcb-scoreboard-card p {
    font-size: clamp(14px, 1.15vw, 17px) !important;
    line-height: 1.45 !important;
}

@media (min-width: 960px) {
    .jlcb-hero h1.jlcb-hero-title-compact,
    body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
        font-size: clamp(44px, 4.75vw, 66px) !important;
    }
}


/* v1.0.32 - refinamento de home e recuperação de senha própria */
.jlcb-hero p,
body.jlcb-page .jlcb-hero p {
    font-size: clamp(13px, 1.05vw, 16px) !important;
    line-height: 1.46 !important;
    max-width: 760px !important;
}

.jlcb-scoreboard-card p,
body.jlcb-page .jlcb-scoreboard-card p {
    font-size: clamp(13px, 1vw, 15px) !important;
    line-height: 1.42 !important;
}

.jlcb-scoreboard-card strong,
body.jlcb-page .jlcb-scoreboard-card strong {
    font-size: clamp(31px, 3vw, 39px) !important;
}

.jlcb-auth-card button[type="submit"].jlcb-btn-primary,
.jlcb-auth-card .jlcb-btn-primary,
.jlcb-login-box .jlcb-btn-primary,
.jlcb-site button.jlcb-btn-primary,
body.jlcb-page .jlcb-auth-card button[type="submit"].jlcb-btn-primary {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: var(--jlcb-primary, #0f766e) !important;
    background-color: var(--jlcb-primary, #0f766e) !important;
    background-image: none !important;
    border: 1px solid var(--jlcb-primary, #0f766e) !important;
    color: #fff !important;
    text-shadow: none !important;
    box-shadow: 0 14px 28px rgba(15, 118, 110, .18) !important;
}

.jlcb-auth-card button[type="submit"].jlcb-btn-primary:hover,
.jlcb-auth-card button[type="submit"].jlcb-btn-primary:focus,
.jlcb-auth-card .jlcb-btn-primary:hover,
.jlcb-auth-card .jlcb-btn-primary:focus,
.jlcb-login-box .jlcb-btn-primary:hover,
.jlcb-login-box .jlcb-btn-primary:focus,
.jlcb-site button.jlcb-btn-primary:hover,
.jlcb-site button.jlcb-btn-primary:focus,
body.jlcb-page .jlcb-auth-card button[type="submit"].jlcb-btn-primary:hover,
body.jlcb-page .jlcb-auth-card button[type="submit"].jlcb-btn-primary:focus {
    background: var(--jlcb-primary-dark, #115e59) !important;
    background-color: var(--jlcb-primary-dark, #115e59) !important;
    background-image: none !important;
    border-color: var(--jlcb-primary-dark, #115e59) !important;
    color: #fff !important;
}

.jlcb-password-wrap .jlcb-password-grid,
body.jlcb-page .jlcb-password-wrap .jlcb-password-grid {
    grid-template-columns: minmax(280px, 680px) !important;
    justify-content: center !important;
}

.jlcb-password-wrap .jlcb-auth-card,
body.jlcb-page .jlcb-password-wrap .jlcb-auth-card {
    width: 100% !important;
}

@media (min-width: 960px) {
    .jlcb-hero,
    body.jlcb-page .jlcb-hero {
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, .78fr) !important;
    }
}


/* v1.0.32 - menu hamburguer no mobile e botões de acesso arredondados */
body.jlcb-page .jlcb-site .jlcb-auth-card button[type="submit"].jlcb-btn,
body.jlcb-page .jlcb-site .jlcb-auth-card button[type="submit"].jlcb-btn-primary,
.jlcb-site form.jlcb-auth-card > button[type="submit"].jlcb-btn,
.jlcb-site form.jlcb-auth-card > button[type="submit"].jlcb-btn-primary,
.jlcb-wrap.jlcb-site form.jlcb-auth-card > button[type="submit"],
body.jlcb-page .jlcb-login-box .jlcb-btn-primary,
.jlcb-login-box a.jlcb-btn-primary {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 999px !important;
    padding: 13px 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--jlcb-primary, #0f766e) !important;
    background-color: var(--jlcb-primary, #0f766e) !important;
    background-image: none !important;
    border: 1px solid var(--jlcb-primary, #0f766e) !important;
    color: #fff !important;
    line-height: 1.1 !important;
    text-align: center !important;
    box-shadow: 0 14px 28px rgba(15, 118, 110, .18) !important;
    overflow: hidden !important;
}

body.jlcb-page .jlcb-site .jlcb-auth-card button[type="submit"].jlcb-btn:hover,
body.jlcb-page .jlcb-site .jlcb-auth-card button[type="submit"].jlcb-btn:focus,
.jlcb-site form.jlcb-auth-card > button[type="submit"].jlcb-btn:hover,
.jlcb-site form.jlcb-auth-card > button[type="submit"].jlcb-btn:focus,
.jlcb-wrap.jlcb-site form.jlcb-auth-card > button[type="submit"]:hover,
.jlcb-wrap.jlcb-site form.jlcb-auth-card > button[type="submit"]:focus {
    border-radius: 999px !important;
    background: var(--jlcb-primary-dark, #115e59) !important;
    background-color: var(--jlcb-primary-dark, #115e59) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    body.jlcb-page,
    .jlcb-page {
        overflow-x: hidden;
    }

    .jlcb-page .entry-content > .jlcb-wrap,
    .jlcb-wrap.jlcb-site,
    body.jlcb-page .jlcb-wrap.jlcb-site {
        width: min(100% - 16px, 1180px) !important;
    }

    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "brand action"
            "links links" !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 9px !important;
        margin-bottom: 12px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        grid-area: brand !important;
        min-width: 0 !important;
    }

    .jlcb-topnav-brand,
    body.jlcb-page .jlcb-topnav-brand {
        max-width: 138px !important;
        min-height: 40px !important;
        padding: 5px 9px !important;
        border-radius: 15px !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 112px !important;
        max-height: 31px !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        grid-area: action !important;
        justify-self: end !important;
        gap: 5px !important;
        max-width: 100% !important;
    }

    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 38px !important;
        padding: 9px 13px !important;
        font-size: 12px !important;
        border-radius: 999px !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links {
        grid-area: links !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 2px 1px 4px !important;
        margin-top: 1px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 28px), transparent 100%);
    }

    .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-links a {
        flex: 0 0 auto !important;
        min-height: 36px !important;
        padding: 9px 13px !important;
        font-size: 12px !important;
        border-radius: 999px !important;
        scroll-snap-align: start;
        background: #f8fafc !important;
        border: 1px solid #eaf0f5 !important;
    }

    .jlcb-topnav-links a.is-active,
    body.jlcb-page .jlcb-topnav-links a.is-active {
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), var(--jlcb-secondary, #14b8a6)) !important;
        color: #fff !important;
        border-color: transparent !important;
    }

    .jlcb-access-intro h2,
    body.jlcb-page .jlcb-access-intro h2 {
        font-size: clamp(27px, 8vw, 38px) !important;
        line-height: 1.08 !important;
    }

    .jlcb-auth-card,
    body.jlcb-page .jlcb-auth-card {
        border-radius: 18px !important;
    }
}

@media (max-width: 420px) {
    .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-links a {
        font-size: 11px !important;
        padding: 8px 11px !important;
    }

    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-action a {
        font-size: 11px !important;
        padding: 8px 11px !important;
    }
}


/* v1.0.32 - menu mobile CSS-only base */
.jlcb-mobile-menu,
body.jlcb-page .jlcb-mobile-menu {
    display: none !important;
}

@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
            "head action"
            "mobile mobile" !important;
        gap: 8px !important;
        align-items: center !important;
        padding: 9px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        grid-area: head !important;
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        grid-area: action !important;
        display: flex !important;
        width: auto !important;
        justify-content: flex-end !important;
        border: 0 !important;
        padding: 0 !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links,
    .jlcb-topnav-toggle,
    body.jlcb-page .jlcb-topnav-toggle {
        display: none !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        grid-area: mobile !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        list-style: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        min-height: 42px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), var(--jlcb-secondary, #14b8a6)) !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
        box-shadow: 0 10px 24px rgba(15, 118, 110, .18) !important;
        user-select: none !important;
    }

    .jlcb-mobile-menu summary::-webkit-details-marker,
    body.jlcb-page .jlcb-mobile-menu summary::-webkit-details-marker {
        display: none !important;
    }

    .jlcb-mobile-menu summary span,
    body.jlcb-page .jlcb-mobile-menu summary span {
        display: block !important;
        width: 17px !important;
        height: 2px !important;
        margin: 0 !important;
        border-radius: 99px !important;
        background: #fff !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu-panel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .jlcb-mobile-menu-panel a,
    body.jlcb-page .jlcb-mobile-menu-panel a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
        padding: 10px 13px !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        border: 1px solid #eaf0f5 !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        text-decoration: none !important;
    }

    .jlcb-mobile-menu-panel a.is-active,
    body.jlcb-page .jlcb-mobile-menu-panel a.is-active {
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), var(--jlcb-secondary, #14b8a6)) !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}


/* v1.0.32 - menu mobile hambúrguer definitivo */
.jlcb-mobile-menu,
body.jlcb-page .jlcb-mobile-menu {
    display: none !important;
}

@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas: "head action" "mobile mobile" !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        grid-area: head !important;
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        grid-area: action !important;
        display: flex !important;
        width: auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
        border: 0 !important;
        padding: 0 !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links,
    .jlcb-topnav-toggle,
    body.jlcb-page .jlcb-topnav-toggle {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        grid-area: mobile !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        list-style: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        min-height: 42px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
        user-select: none !important;
    }

    .jlcb-mobile-menu summary::-webkit-details-marker,
    body.jlcb-page .jlcb-mobile-menu summary::-webkit-details-marker {
        display: none !important;
    }

    .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 18px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu-panel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .jlcb-mobile-menu-panel a,
    body.jlcb-page .jlcb-mobile-menu-panel a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
        padding: 10px 13px !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        border: 1px solid #eaf0f5 !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        text-decoration: none !important;
    }

    .jlcb-mobile-menu-panel a.is-active,
    body.jlcb-page .jlcb-mobile-menu-panel a.is-active {
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}


/* v1.0.32 - menu mobile sem área vazia quando fechado */
.jlcb-mobile-menu,
body.jlcb-page .jlcb-mobile-menu {
    display: none !important;
}

@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        grid-template-areas: "head action mobile" !important;
        gap: 8px !important;
        align-items: center !important;
        padding: 7px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        grid-area: head !important;
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        grid-area: action !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        border: 0 !important;
        padding: 0 !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links,
    .jlcb-topnav-toggle,
    body.jlcb-page .jlcb-topnav-toggle {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        grid-area: mobile !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-self: end !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        list-style: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        width: auto !important;
        min-width: 80px !important;
        min-height: 40px !important;
        padding: 0 12px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
        user-select: none !important;
    }

    .jlcb-mobile-menu summary::-webkit-details-marker,
    body.jlcb-page .jlcb-mobile-menu summary::-webkit-details-marker {
        display: none !important;
    }

    .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 18px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu-panel {
        display: none !important;
    }

    .jlcb-mobile-menu[open],
    body.jlcb-page .jlcb-mobile-menu[open] {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        width: 100% !important;
        justify-self: stretch !important;
    }

    .jlcb-mobile-menu[open] summary,
    body.jlcb-page .jlcb-mobile-menu[open] summary {
        display: flex !important;
        width: 100% !important;
    }

    .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .jlcb-mobile-menu-panel a,
    body.jlcb-page .jlcb-mobile-menu-panel a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
        padding: 10px 13px !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        border: 1px solid #eaf0f5 !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        text-decoration: none !important;
    }

    .jlcb-mobile-menu-panel a.is-active,
    body.jlcb-page .jlcb-mobile-menu-panel a.is-active {
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}

@media (max-width: 430px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas: "head action" "mobile mobile" !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        grid-area: mobile !important;
        width: 100% !important;
        justify-self: stretch !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        display: flex !important;
        width: 100% !important;
    }
}


/* v1.0.32 - menu mobile em uma linha, Sair dentro do dropdown e dropdown sobreposto */
@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        position: sticky !important;
        overflow: visible !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        grid-template-areas: "head action mobile" !important;
        gap: 7px !important;
        align-items: center !important;
        padding: 7px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        grid-area: head !important;
        width: auto !important;
        min-width: 0 !important;
        justify-content: flex-start !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        grid-area: action !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        border: 0 !important;
        padding: 0 !important;
    }

    .jlcb-topnav-action .jlcb-nav-logout,
    body.jlcb-page .jlcb-topnav-action .jlcb-nav-logout {
        display: none !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links,
    .jlcb-topnav-toggle,
    body.jlcb-page .jlcb-topnav-toggle {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        grid-area: mobile !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        justify-self: end !important;
        position: static !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        list-style: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        width: auto !important;
        min-width: 76px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 12px !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
        user-select: none !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    .jlcb-mobile-menu summary::-webkit-details-marker,
    body.jlcb-page .jlcb-mobile-menu summary::-webkit-details-marker {
        display: none !important;
    }

    .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        font-size: 18px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu-panel {
        display: none !important;
    }

    .jlcb-mobile-menu[open],
    body.jlcb-page .jlcb-mobile-menu[open] {
        grid-area: mobile !important;
        width: auto !important;
        justify-self: end !important;
    }

    .jlcb-mobile-menu[open] summary,
    body.jlcb-page .jlcb-mobile-menu[open] summary {
        display: inline-flex !important;
        width: auto !important;
        min-width: 76px !important;
    }

    .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 7px !important;
        right: 7px !important;
        z-index: 999 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 10px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: 0 18px 46px rgba(15,23,42,.18) !important;
    }

    .jlcb-mobile-menu-panel a,
    body.jlcb-page .jlcb-mobile-menu-panel a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        min-height: 42px !important;
        padding: 10px 13px !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        border: 1px solid #eaf0f5 !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 850 !important;
        text-decoration: none !important;
    }

    .jlcb-mobile-menu-panel a.is-active,
    body.jlcb-page .jlcb-mobile-menu-panel a.is-active {
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        border-color: transparent !important;
    }
}

@media (max-width: 430px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        grid-template-areas: "head action mobile" !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 118px !important;
    }

    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 39px !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        min-width: 74px !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 360px) {
    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 96px !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        display: none !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        min-width: 42px !important;
        width: 42px !important;
        padding: 0 !important;
    }
}


/* v1.0.39 - correção definitiva: menu mobile único, sem duplicidade e sempre em uma linha */
@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        position: sticky !important;
        top: 8px !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        flex-wrap: nowrap !important;
        padding: 7px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .jlcb-topnav-brand,
    body.jlcb-page .jlcb-topnav-brand {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: 132px !important;
        padding: 5px 8px !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 118px !important;
        max-height: 34px !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links,
    .jlcb-topnav-toggle,
    body.jlcb-page .jlcb-topnav-toggle {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        gap: 0 !important;
    }

    .jlcb-topnav-action .jlcb-nav-logout,
    body.jlcb-page .jlcb-topnav-action .jlcb-nav-logout {
        display: none !important;
    }

    .jlcb-topnav-action .jlcb-nav-cta,
    body.jlcb-page .jlcb-topnav-action .jlcb-nav-cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 40px !important;
        min-height: 40px !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0 13px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        display: block !important;
        flex: 0 0 auto !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        justify-self: auto !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        list-style: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        width: auto !important;
        min-width: 78px !important;
        height: 40px !important;
        min-height: 40px !important;
        margin: 0 !important;
        padding: 0 12px !important;
        border: 0 !important;
        border-radius: 14px !important;
        background: linear-gradient(135deg, var(--jlcb-primary, #0f766e), #14b8a6) !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        cursor: pointer !important;
        user-select: none !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    .jlcb-mobile-menu summary::-webkit-details-marker,
    body.jlcb-page .jlcb-mobile-menu summary::-webkit-details-marker {
        display: none !important;
    }

    .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 16px !important;
        height: 16px !important;
        color: #fff !important;
        font-size: 18px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        display: inline !important;
        color: #fff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu-panel {
        display: none !important;
    }

    .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel,
    body.jlcb-page .jlcb-mobile-menu[open] .jlcb-mobile-menu-panel {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 7px !important;
        right: 7px !important;
        z-index: 9999 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 10px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: 0 18px 46px rgba(15,23,42,.20) !important;
    }
}

@media (max-width: 380px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        gap: 5px !important;
        padding: 6px !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 100px !important;
    }

    .jlcb-topnav-action .jlcb-nav-cta,
    body.jlcb-page .jlcb-topnav-action .jlcb-nav-cta {
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 11px !important;
        font-size: 11px !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        height: 38px !important;
        min-height: 38px !important;
        min-width: 68px !important;
        padding: 0 9px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 335px) {
    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        display: none !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        min-width: 40px !important;
        width: 40px !important;
        padding: 0 !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-width: 88px !important;
    }
}


/* v1.0.39 - menu mobile: CTA antes do menu e menu sempre à direita */
@media (max-width: 780px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 7px !important;
    }

    .jlcb-topnav-head,
    body.jlcb-page .jlcb-topnav-head {
        order: 1 !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        order: 2 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        margin-left: auto !important;
        min-width: 0 !important;
    }

    .jlcb-mobile-menu,
    body.jlcb-page .jlcb-mobile-menu {
        order: 3 !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        position: static !important;
    }

    .jlcb-topnav-action .jlcb-nav-cta,
    body.jlcb-page .jlcb-topnav-action .jlcb-nav-cta {
        flex: 0 0 auto !important;
    }
}


/* v1.0.39 - ícone hambúrguer limpo em CSS */
@media (max-width: 780px) {
    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        gap: 8px !important;
    }

    .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 3px !important;
        width: 18px !important;
        min-width: 18px !important;
        height: 14px !important;
        flex: 0 0 18px !important;
        color: #fff !important;
        line-height: 1 !important;
        font-size: 0 !important;
        overflow: visible !important;
    }

    .jlcb-mobile-menu-icon i,
    body.jlcb-page .jlcb-mobile-menu-icon i {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        min-height: 2px !important;
        border-radius: 999px !important;
        background: #fff !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
    }
}


/* v1.0.39 - remover ícone do botão Menu mobile */
@media (max-width: 780px) {
    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        gap: 0 !important;
        min-width: 72px !important;
        width: auto !important;
        padding: 0 14px !important;
        text-align: center !important;
    }

    .jlcb-mobile-menu-icon,
    .jlcb-mobile-menu-icon i,
    body.jlcb-page .jlcb-mobile-menu-icon,
    body.jlcb-page .jlcb-mobile-menu-icon i {
        display: none !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        display: inline !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }
}

@media (max-width: 335px) {
    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        display: inline !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        min-width: 64px !important;
        width: auto !important;
        padding: 0 10px !important;
    }
}


/* v1.0.42 - layout mobile dos palpites + elemento visual de futebol na home */
.jlcb-hero,
body.jlcb-page .jlcb-hero {
    position: relative !important;
    overflow: hidden !important;
}

.jlcb-hero-content,
.jlcb-hero-side,
body.jlcb-page .jlcb-hero-content,
body.jlcb-page .jlcb-hero-side {
    position: relative !important;
    z-index: 2 !important;
}

.jlcb-hero-player,
body.jlcb-page .jlcb-hero-player {
    position: absolute !important;
    right: 22px !important;
    bottom: 0 !important;
    width: 320px !important;
    height: 320px !important;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNjAgNDIwIj4KICA8ZyBmaWxsPSJub25lIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjE0IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIG9wYWNpdHk9IjAuOTUiPgogICAgPGNpcmNsZSBjeD0iMjEwIiBjeT0iNzYiIHI9IjI2Ii8+CiAgICA8cGF0aCBkPSJNMjA1IDEwNGwtNDQgNTggMzQgNDIgNDAtNTciLz4KICAgIDxwYXRoIGQ9Ik0xNjIgMTY0bC01OCA0MSIvPgogICAgPHBhdGggZD0iTTE5NSAyMDVsNjIgNDYiLz4KICAgIDxwYXRoIGQ9Ik0xNTcgMTY1bC0yMCA5OCIvPgogICAgPHBhdGggZD0iTTE5NCAyMDVsLTEyIDExOCIvPgogICAgPHBhdGggZD0iTTIxOSAyMDRsOTItMzMiLz4KICAgIDxjaXJjbGUgY3g9IjMyMCIgY3k9IjE2NiIgcj0iMTgiLz4KICAgIDxwYXRoIGQ9Ik0zMzQgMTU4bDE2LTEwIiBvcGFjaXR5PSIwLjY1Ii8+CiAgICA8cGF0aCBkPSJNMzM3IDE3NmwxOSA1IiBvcGFjaXR5PSIwLjY1Ii8+CiAgPC9nPgo8L3N2Zz4=") no-repeat center bottom / contain !important;
    opacity: .15 !important;
    pointer-events: none !important;
    z-index: 1 !important;
    filter: drop-shadow(0 8px 18px rgba(255,255,255,.08)) !important;
}

.jlcb-match-line-modern,
body.jlcb-page .jlcb-match-line-modern {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
}

.jlcb-team-score,
body.jlcb-page .jlcb-team-score {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.jlcb-team-score-home,
body.jlcb-page .jlcb-team-score-home {
    justify-content: flex-end !important;
}

.jlcb-team-score-away,
body.jlcb-page .jlcb-team-score-away {
    justify-content: flex-start !important;
}

.jlcb-team-score-home .jlcb-team-flag-wrap { order: 1 !important; }
.jlcb-team-score-home .jlcb-team-name { order: 2 !important; text-align: right !important; }
.jlcb-team-score-home .jlcb-score-control,
.jlcb-team-score-home .jlcb-prediction-single { order: 3 !important; }

.jlcb-team-score-away .jlcb-score-control,
.jlcb-team-score-away .jlcb-prediction-single { order: 1 !important; }
.jlcb-team-score-away .jlcb-team-name { order: 2 !important; text-align: left !important; }
.jlcb-team-score-away .jlcb-team-flag-wrap { order: 3 !important; }

.jlcb-team-flag-wrap,
body.jlcb-page .jlcb-team-flag-wrap {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
}

.jlcb-team-flag,
body.jlcb-page .jlcb-team-flag {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
}

.jlcb-team-name,
body.jlcb-page .jlcb-team-name {
    display: block !important;
    min-width: 0 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    color: #0f172a !important;
}

.jlcb-team-name-full,
body.jlcb-page .jlcb-team-name-full {
    display: inline !important;
}

.jlcb-team-name-mobile,
body.jlcb-page .jlcb-team-name-mobile {
    display: none !important;
}

.jlcb-score-separator-main,
body.jlcb-page .jlcb-score-separator-main {
    align-self: center !important;
    justify-self: center !important;
    font-weight: 800 !important;
    color: #64748b !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.jlcb-prediction-single,
body.jlcb-page .jlcb-prediction-single {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 10px !important;
    border-radius: 12px !important;
    border: 1px solid #bfd4e3 !important;
    background: #ffffff !important;
    font-weight: 800 !important;
    color: #0f172a !important;
}

@media (max-width: 820px) {
    .jlcb-hero-player,
    body.jlcb-page .jlcb-hero-player {
        right: -22px !important;
        bottom: -12px !important;
        width: 220px !important;
        height: 220px !important;
        opacity: .12 !important;
    }

    .jlcb-phase-matches .jlcb-match-line-modern,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line-modern {
        grid-template-columns: minmax(92px, 1fr) auto minmax(92px, 1fr) !important;
        gap: 10px !important;
        align-items: start !important;
    }

    .jlcb-phase-matches .jlcb-team-score,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .jlcb-phase-matches .jlcb-team-score .jlcb-team-flag-wrap,
    .jlcb-phase-matches .jlcb-team-score .jlcb-score-control,
    .jlcb-phase-matches .jlcb-team-score .jlcb-prediction-single,
    .jlcb-phase-matches .jlcb-team-score .jlcb-team-name,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-team-flag-wrap,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-score-control,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-prediction-single,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-team-name {
        order: initial !important;
        text-align: center !important;
        justify-self: center !important;
    }

    .jlcb-phase-matches .jlcb-team-name-full,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name-full {
        display: none !important;
    }

    .jlcb-phase-matches .jlcb-team-name-mobile,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name-mobile {
        display: inline !important;
    }

    .jlcb-phase-matches .jlcb-team-name,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name {
        font-size: 12px !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
        word-break: break-word !important;
    }

    .jlcb-phase-matches .jlcb-team-flag-wrap,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-flag-wrap {
        width: 22px !important;
        height: 22px !important;
        flex: 0 0 22px !important;
    }

    .jlcb-phase-matches .jlcb-team-flag,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-flag {
        width: 18px !important;
        height: 18px !important;
    }

    .jlcb-phase-matches .jlcb-score-control,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-control {
        margin: 0 auto !important;
    }

    .jlcb-phase-matches .jlcb-score-separator-main,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-separator-main {
        margin-top: 34px !important;
        font-size: 15px !important;
    }
}


/* v1.0.43 - correções finais: agrupamento por data, home limpa com upload de imagem e mobile dos placares mais compacto */
.jlcb-hero-player,
body.jlcb-page .jlcb-hero-player {
    display: none !important;
    background: none !important;
}

.jlcb-hero::before,
body.jlcb-page .jlcb-hero::before {
    border-radius: inherit !important;
}

.jlcb-hero-content,
.jlcb-hero-side,
body.jlcb-page .jlcb-hero-content,
body.jlcb-page .jlcb-hero-side {
    position: relative !important;
    z-index: 2 !important;
}

@media (max-width: 820px) {
    .jlcb-phase-matches .jlcb-match-line-modern,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line-modern {
        grid-template-columns: minmax(92px, 1fr) 18px minmax(92px, 1fr) !important;
        gap: 4px !important;
        align-items: start !important;
        max-width: 310px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .jlcb-phase-matches .jlcb-team-score,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        align-items: center !important;
        gap: 5px !important;
        min-width: 0 !important;
    }

    .jlcb-phase-matches .jlcb-team-name-full,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name-full {
        display: inline !important;
    }

    .jlcb-phase-matches .jlcb-team-name-mobile,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name-mobile {
        display: none !important;
    }

    .jlcb-phase-matches .jlcb-team-name,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-name {
        font-size: 12px !important;
        line-height: 1.15 !important;
        max-width: 112px !important;
        min-height: 28px !important;
        text-align: center !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }

    .jlcb-phase-matches .jlcb-team-score .jlcb-team-flag-wrap,
    .jlcb-phase-matches .jlcb-team-score .jlcb-score-control,
    .jlcb-phase-matches .jlcb-team-score .jlcb-prediction-single,
    .jlcb-phase-matches .jlcb-team-score .jlcb-team-name,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-team-flag-wrap,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-score-control,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-prediction-single,
    body.jlcb-page .jlcb-phase-matches .jlcb-team-score .jlcb-team-name {
        order: initial !important;
        justify-self: center !important;
    }

    .jlcb-phase-matches .jlcb-score-separator-main,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-separator-main {
        margin-top: 42px !important;
        width: 18px !important;
        text-align: center !important;
        font-size: 14px !important;
        font-weight: 900 !important;
    }

    .jlcb-phase-matches .jlcb-score-control,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-control {
        gap: 3px !important;
        display: inline-flex !important;
    }

    .jlcb-phase-matches .jlcb-score-step,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-step {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        padding: 0 !important;
    }

    .jlcb-phase-matches .jlcb-pred-input,
    body.jlcb-page .jlcb-phase-matches .jlcb-pred-input {
        width: 36px !important;
        height: 32px !important;
        min-width: 36px !important;
    }
}


/* v1.0.44 - correção da página de palpites e remoção do círculo decorativo da home */
.jlcb-hero:after,
body.jlcb-page .jlcb-hero:after,
.jlcb-hero::after,
body.jlcb-page .jlcb-hero::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
}

.jlcb-hero-player,
body.jlcb-page .jlcb-hero-player {
    display: none !important;
    background: none !important;
}

@media (max-width: 820px) {
    .jlcb-phase-matches .jlcb-match-line-modern,
    body.jlcb-page .jlcb-phase-matches .jlcb-match-line-modern {
        grid-template-columns: minmax(88px, 1fr) 16px minmax(88px, 1fr) !important;
        gap: 4px !important;
        align-items: start !important;
        max-width: 290px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .jlcb-phase-matches .jlcb-score-separator-main,
    body.jlcb-page .jlcb-phase-matches .jlcb-score-separator-main {
        margin-top: 40px !important;
        width: 16px !important;
        text-align: center !important;
    }
}

/* v1.0.46 - crédito discreto no rodapé */
.jlcb-credit,
body.jlcb-page .jlcb-credit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(1160px, calc(100% - 32px)) !important;
    margin: 4px auto 24px !important;
    padding: 6px 12px !important;
    color: rgba(71, 98, 125, .58) !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.jlcb-credit a,
body.jlcb-page .jlcb-credit a {
    color: rgba(15, 118, 110, .68) !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

.jlcb-credit a:hover,
body.jlcb-page .jlcb-credit a:hover {
    color: var(--jlcb-primary, #0f766e) !important;
    text-decoration: underline !important;
}


/* v1.0.47 - Tabela de grupos e bandeiras mais simples */
.jlcb-standings-wrap .jlcb-section-title,
body.jlcb-page .jlcb-standings-wrap .jlcb-section-title {
    margin-bottom: 18px !important;
}

.jlcb-standings-updated,
body.jlcb-page .jlcb-standings-updated {
    display: inline-flex !important;
    margin-top: 8px !important;
    color: #64748b !important;
    font-size: 12px !important;
}

.jlcb-standings-grid,
body.jlcb-page .jlcb-standings-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.jlcb-standings-card,
body.jlcb-page .jlcb-standings-card {
    overflow: hidden !important;
    border: 1px solid #dbe6ef !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .055) !important;
}

.jlcb-standings-card header,
body.jlcb-page .jlcb-standings-card header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    background: linear-gradient(135deg, rgba(15,118,110,.08), rgba(20,184,166,.10)) !important;
    border-bottom: 1px solid #e2eef7 !important;
}

.jlcb-standings-card header span,
body.jlcb-page .jlcb-standings-card header span {
    color: #0f172a !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -.03em !important;
}

.jlcb-standings-card header small,
body.jlcb-page .jlcb-standings-card header small {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 27px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #dbeafe !important;
    color: #334155 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}

.jlcb-standings-table-wrap,
body.jlcb-page .jlcb-standings-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.jlcb-standings-table,
body.jlcb-page .jlcb-standings-table {
    width: 100% !important;
    min-width: 640px !important;
    border-collapse: collapse !important;
    background: #ffffff !important;
}

.jlcb-standings-table th,
.jlcb-standings-table td,
body.jlcb-page .jlcb-standings-table th,
body.jlcb-page .jlcb-standings-table td {
    padding: 10px 8px !important;
    border-bottom: 1px solid #eef4f8 !important;
    color: #334155 !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.jlcb-standings-table th,
body.jlcb-page .jlcb-standings-table th {
    color: #64748b !important;
    font-size: 10.5px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    background: #f8fafc !important;
}

.jlcb-standings-table tbody tr:last-child td,
body.jlcb-page .jlcb-standings-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.jlcb-standings-team,
body.jlcb-page .jlcb-standings-team {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 180px !important;
    text-align: left !important;
}

.jlcb-standings-team strong,
body.jlcb-page .jlcb-standings-team strong {
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.jlcb-standings-team .jlcb-team-flag,
body.jlcb-page .jlcb-standings-team .jlcb-team-flag,
.jlcb-team-flag,
body.jlcb-page .jlcb-team-flag {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
}

.jlcb-col-pos,
body.jlcb-page .jlcb-col-pos {
    width: 38px !important;
    color: #64748b !important;
}

@media (max-width: 900px) {
    .jlcb-standings-grid,
    body.jlcb-page .jlcb-standings-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 560px) {
    .jlcb-standings-card header,
    body.jlcb-page .jlcb-standings-card header {
        padding: 12px !important;
    }

    .jlcb-standings-table,
    body.jlcb-page .jlcb-standings-table {
        min-width: 580px !important;
    }
}

/* v1.0.48 - grupos dos palpites pela standings e tabela sem rolagem horizontal */
.jlcb-standings-grid,
body.jlcb-page .jlcb-standings-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
}

.jlcb-standings-table-wrap,
body.jlcb-page .jlcb-standings-table-wrap {
    overflow: visible !important;
    overflow-x: visible !important;
}

.jlcb-standings-table,
body.jlcb-page .jlcb-standings-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
}

.jlcb-standings-table th,
.jlcb-standings-table td,
body.jlcb-page .jlcb-standings-table th,
body.jlcb-page .jlcb-standings-table td {
    padding: 10px 7px !important;
    font-size: 12px !important;
}

.jlcb-standings-table th:nth-child(1),
.jlcb-standings-table td:nth-child(1) { width: 42px !important; }
.jlcb-standings-table th:nth-child(2),
.jlcb-standings-table td:nth-child(2) { width: auto !important; }
.jlcb-standings-table th:nth-child(3),
.jlcb-standings-table td:nth-child(3) { width: 58px !important; }
.jlcb-standings-table th:nth-child(n+4),
.jlcb-standings-table td:nth-child(n+4) { width: 48px !important; }

.jlcb-standings-team,
body.jlcb-page .jlcb-standings-team {
    min-width: 0 !important;
}

.jlcb-standings-team strong,
body.jlcb-page .jlcb-standings-team strong {
    white-space: normal !important;
    line-height: 1.25 !important;
}

@media (max-width: 640px) {
    .jlcb-standings-card,
    body.jlcb-page .jlcb-standings-card {
        border-radius: 18px !important;
    }

    .jlcb-standings-table,
    .jlcb-standings-table thead,
    .jlcb-standings-table tbody,
    .jlcb-standings-table tr,
    .jlcb-standings-table th,
    .jlcb-standings-table td,
    body.jlcb-page .jlcb-standings-table,
    body.jlcb-page .jlcb-standings-table thead,
    body.jlcb-page .jlcb-standings-table tbody,
    body.jlcb-page .jlcb-standings-table tr,
    body.jlcb-page .jlcb-standings-table th,
    body.jlcb-page .jlcb-standings-table td {
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .jlcb-standings-table thead,
    body.jlcb-page .jlcb-standings-table thead {
        display: none !important;
    }

    .jlcb-standings-table tbody,
    body.jlcb-page .jlcb-standings-table tbody {
        padding: 8px !important;
        background: #f8fafc !important;
    }

    .jlcb-standings-table tr,
    body.jlcb-page .jlcb-standings-table tr {
        display: grid !important;
        grid-template-columns: 38px 1fr repeat(4, minmax(42px, 1fr)) !important;
        grid-template-areas:
            "pos team team team team team"
            "pts j v e d sg" !important;
        gap: 6px !important;
        align-items: center !important;
        padding: 10px !important;
        margin-bottom: 8px !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(15,23,42,.035) !important;
    }

    .jlcb-standings-table tr:last-child,
    body.jlcb-page .jlcb-standings-table tr:last-child {
        margin-bottom: 0 !important;
    }

    .jlcb-standings-table td,
    body.jlcb-page .jlcb-standings-table td {
        padding: 0 !important;
        border: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        font-size: 12px !important;
    }

    .jlcb-standings-table td::before,
    body.jlcb-page .jlcb-standings-table td::before {
        content: attr(data-label) !important;
        display: block !important;
        margin-bottom: 2px !important;
        color: #64748b !important;
        font-size: 9px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
    }

    .jlcb-standings-table td:nth-child(1),
    body.jlcb-page .jlcb-standings-table td:nth-child(1) {
        grid-area: pos !important;
        align-self: center !important;
    }

    .jlcb-standings-table td:nth-child(2),
    body.jlcb-page .jlcb-standings-table td:nth-child(2) {
        grid-area: team !important;
    }

    .jlcb-standings-table td:nth-child(3),
    body.jlcb-page .jlcb-standings-table td:nth-child(3) { grid-area: pts !important; }
    .jlcb-standings-table td:nth-child(4),
    body.jlcb-page .jlcb-standings-table td:nth-child(4) { grid-area: j !important; }
    .jlcb-standings-table td:nth-child(5),
    body.jlcb-page .jlcb-standings-table td:nth-child(5) { grid-area: v !important; }
    .jlcb-standings-table td:nth-child(6),
    body.jlcb-page .jlcb-standings-table td:nth-child(6) { grid-area: e !important; }
    .jlcb-standings-table td:nth-child(7),
    body.jlcb-page .jlcb-standings-table td:nth-child(7) { grid-area: d !important; }
    .jlcb-standings-table td:nth-child(8),
    .jlcb-standings-table td:nth-child(9),
    body.jlcb-page .jlcb-standings-table td:nth-child(8),
    body.jlcb-page .jlcb-standings-table td:nth-child(9) {
        display: none !important;
    }
    .jlcb-standings-table td:nth-child(10),
    body.jlcb-page .jlcb-standings-table td:nth-child(10) { grid-area: sg !important; }

    .jlcb-standings-team,
    body.jlcb-page .jlcb-standings-team {
        display: flex !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        text-align: left !important;
    }

    .jlcb-standings-team::before,
    body.jlcb-page .jlcb-standings-team::before {
        display: none !important;
    }

    .jlcb-standings-team strong,
    body.jlcb-page .jlcb-standings-team strong {
        font-size: 13px !important;
    }

    .jlcb-col-pos strong,
    body.jlcb-page .jlcb-col-pos strong {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 999px !important;
        background: #eef7f5 !important;
        color: var(--jlcb-primary, #0f766e) !important;
    }
}

/* v1.0.49 - tabela mais limpa para usuário final */
.jlcb-standings-wrap .jlcb-section-title,
body.jlcb-page .jlcb-standings-wrap .jlcb-section-title {
    margin-bottom: 22px !important;
}

.jlcb-standings-wrap .jlcb-section-title p,
body.jlcb-page .jlcb-standings-wrap .jlcb-section-title p {
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    color: #526b86 !important;
    font-size: 15px !important;
}

.jlcb-standings-updated,
body.jlcb-page .jlcb-standings-updated {
    display: none !important;
}

.jlcb-standings-grid,
body.jlcb-page .jlcb-standings-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(420px, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
}

.jlcb-standings-card,
body.jlcb-page .jlcb-standings-card {
    overflow: hidden !important;
    border: 1px solid #dbe8f1 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .06) !important;
}

.jlcb-standings-card header,
body.jlcb-page .jlcb-standings-card header {
    padding: 14px 16px !important;
    background: linear-gradient(135deg, #effdfa, #f8fffd) !important;
    border-bottom: 1px solid #deedf4 !important;
}

.jlcb-standings-card header span,
body.jlcb-page .jlcb-standings-card header span {
    font-size: 18px !important;
    color: #0f172a !important;
}

.jlcb-standings-card header small,
body.jlcb-page .jlcb-standings-card header small {
    background: #ffffff !important;
    color: #35506c !important;
    border-color: #dbeafe !important;
}

.jlcb-standings-table-wrap,
body.jlcb-page .jlcb-standings-table-wrap {
    overflow: visible !important;
    overflow-x: visible !important;
}

.jlcb-standings-table,
body.jlcb-page .jlcb-standings-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
}

.jlcb-standings-table th,
.jlcb-standings-table td,
body.jlcb-page .jlcb-standings-table th,
body.jlcb-page .jlcb-standings-table td {
    padding: 11px 6px !important;
    border: 0 !important;
    border-bottom: 1px solid #eef4f8 !important;
    color: #16324f !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: nowrap !important;
    background: transparent !important;
}

.jlcb-standings-table th,
body.jlcb-page .jlcb-standings-table th {
    color: #607692 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .05em !important;
    background: #f8fafc !important;
}

.jlcb-standings-table tbody tr:nth-child(odd),
body.jlcb-page .jlcb-standings-table tbody tr:nth-child(odd) {
    background: #fbfdff !important;
}

.jlcb-standings-table tbody tr:last-child td,
body.jlcb-page .jlcb-standings-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.jlcb-standings-table th:nth-child(1),
.jlcb-standings-table td:nth-child(1) { width: 34px !important; }
.jlcb-standings-table th:nth-child(2),
.jlcb-standings-table td:nth-child(2) { width: auto !important; }
.jlcb-standings-table th:nth-child(3),
.jlcb-standings-table td:nth-child(3) { width: 48px !important; }
.jlcb-standings-table th:nth-child(n+4),
.jlcb-standings-table td:nth-child(n+4) { width: 36px !important; }

.jlcb-standings-team,
body.jlcb-page .jlcb-standings-team {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-width: 0 !important;
    text-align: left !important;
}

.jlcb-standings-team strong,
body.jlcb-page .jlcb-standings-team strong {
    color: #0f172a !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    font-weight: 900 !important;
}

.jlcb-col-pos strong,
body.jlcb-page .jlcb-col-pos strong {
    font-weight: 900 !important;
    color: var(--jlcb-primary, #0f766e) !important;
}

@media (max-width: 1040px) {
    .jlcb-standings-grid,
    body.jlcb-page .jlcb-standings-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .jlcb-standings-wrap .jlcb-section-title,
    body.jlcb-page .jlcb-standings-wrap .jlcb-section-title {
        padding: 0 8px !important;
        margin-bottom: 18px !important;
    }

    .jlcb-standings-wrap .jlcb-section-title h2,
    body.jlcb-page .jlcb-standings-wrap .jlcb-section-title h2 {
        font-size: clamp(30px, 9vw, 40px) !important;
        line-height: 1.05 !important;
    }

    .jlcb-standings-wrap .jlcb-section-title p,
    body.jlcb-page .jlcb-standings-wrap .jlcb-section-title p {
        font-size: 14px !important;
        line-height: 1.45 !important;
    }

    .jlcb-standings-grid,
    body.jlcb-page .jlcb-standings-grid {
        gap: 14px !important;
    }

    .jlcb-standings-card,
    body.jlcb-page .jlcb-standings-card {
        border-radius: 20px !important;
    }

    .jlcb-standings-card header,
    body.jlcb-page .jlcb-standings-card header {
        padding: 13px 14px !important;
    }

    .jlcb-standings-card header span,
    body.jlcb-page .jlcb-standings-card header span {
        font-size: 18px !important;
    }

    .jlcb-standings-table,
    .jlcb-standings-table thead,
    .jlcb-standings-table tbody,
    .jlcb-standings-table tr,
    .jlcb-standings-table th,
    .jlcb-standings-table td,
    body.jlcb-page .jlcb-standings-table,
    body.jlcb-page .jlcb-standings-table thead,
    body.jlcb-page .jlcb-standings-table tbody,
    body.jlcb-page .jlcb-standings-table tr,
    body.jlcb-page .jlcb-standings-table th,
    body.jlcb-page .jlcb-standings-table td {
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .jlcb-standings-table thead,
    body.jlcb-page .jlcb-standings-table thead {
        display: none !important;
    }

    .jlcb-standings-table tbody,
    body.jlcb-page .jlcb-standings-table tbody {
        display: grid !important;
        gap: 8px !important;
        padding: 10px !important;
        background: #f7fbfe !important;
    }

    .jlcb-standings-table tr,
    body.jlcb-page .jlcb-standings-table tr {
        display: grid !important;
        grid-template-columns: 36px minmax(0, 1fr) 54px !important;
        grid-template-areas:
            "pos team pts"
            "j v e"
            "d sg sg" !important;
        gap: 7px !important;
        align-items: center !important;
        padding: 10px !important;
        margin: 0 !important;
        border: 1px solid #deebf3 !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, .035) !important;
    }

    .jlcb-standings-table td,
    body.jlcb-page .jlcb-standings-table td {
        padding: 0 !important;
        border: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        font-size: 12px !important;
        background: transparent !important;
    }

    .jlcb-standings-table td::before,
    body.jlcb-page .jlcb-standings-table td::before {
        content: attr(data-label) !important;
        display: block !important;
        margin-bottom: 2px !important;
        color: #6b7f96 !important;
        font-size: 9px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        letter-spacing: .04em !important;
    }

    .jlcb-standings-table td:nth-child(1),
    body.jlcb-page .jlcb-standings-table td:nth-child(1) {
        grid-area: pos !important;
        align-self: center !important;
    }

    .jlcb-standings-table td:nth-child(1)::before,
    body.jlcb-page .jlcb-standings-table td:nth-child(1)::before,
    .jlcb-standings-table td:nth-child(2)::before,
    body.jlcb-page .jlcb-standings-table td:nth-child(2)::before {
        display: none !important;
    }

    .jlcb-standings-table td:nth-child(2),
    body.jlcb-page .jlcb-standings-table td:nth-child(2) {
        grid-area: team !important;
    }

    .jlcb-standings-table td:nth-child(3),
    body.jlcb-page .jlcb-standings-table td:nth-child(3) { grid-area: pts !important; }
    .jlcb-standings-table td:nth-child(4),
    body.jlcb-page .jlcb-standings-table td:nth-child(4) { grid-area: j !important; }
    .jlcb-standings-table td:nth-child(5),
    body.jlcb-page .jlcb-standings-table td:nth-child(5) { grid-area: v !important; }
    .jlcb-standings-table td:nth-child(6),
    body.jlcb-page .jlcb-standings-table td:nth-child(6) { grid-area: e !important; }
    .jlcb-standings-table td:nth-child(7),
    body.jlcb-page .jlcb-standings-table td:nth-child(7) { grid-area: d !important; }
    .jlcb-standings-table td:nth-child(8),
    body.jlcb-page .jlcb-standings-table td:nth-child(8) { grid-area: sg !important; }

    .jlcb-standings-team,
    body.jlcb-page .jlcb-standings-team {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        text-align: left !important;
    }

    .jlcb-standings-team strong,
    body.jlcb-page .jlcb-standings-team strong {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .jlcb-standings-table td:nth-child(n+3),
    body.jlcb-page .jlcb-standings-table td:nth-child(n+3) {
        padding: 6px 4px !important;
        border-radius: 10px !important;
        background: #f8fafc !important;
    }

    .jlcb-col-pos strong,
    body.jlcb-page .jlcb-col-pos strong {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 999px !important;
        background: #e9fbf6 !important;
        color: var(--jlcb-primary, #0f766e) !important;
    }
}

/* v1.0.50 - tabela mobile compacta e home sem referência técnica */
.jlcb-hero > .jlcb-eyebrow,
body.jlcb-page .jlcb-hero > .jlcb-eyebrow,
.jlcb-hero-content > .jlcb-eyebrow,
body.jlcb-page .jlcb-hero-content > .jlcb-eyebrow {
    display: none !important;
}

@media (max-width: 640px) {
    .jlcb-standings-card,
    body.jlcb-page .jlcb-standings-card {
        border-radius: 18px !important;
        overflow: hidden !important;
    }

    .jlcb-standings-card header,
    body.jlcb-page .jlcb-standings-card header {
        padding: 12px 14px !important;
    }

    .jlcb-standings-table-wrap,
    body.jlcb-page .jlcb-standings-table-wrap {
        overflow: hidden !important;
        background: #ffffff !important;
    }

    .jlcb-standings-table,
    body.jlcb-page .jlcb-standings-table {
        display: table !important;
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed !important;
        border-collapse: collapse !important;
        border-spacing: 0 !important;
        background: #ffffff !important;
    }

    .jlcb-standings-table thead,
    body.jlcb-page .jlcb-standings-table thead {
        display: table-header-group !important;
    }

    .jlcb-standings-table tbody,
    body.jlcb-page .jlcb-standings-table tbody {
        display: table-row-group !important;
        padding: 0 !important;
        gap: 0 !important;
        background: #ffffff !important;
    }

    .jlcb-standings-table tr,
    body.jlcb-page .jlcb-standings-table tr {
        display: table-row !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .jlcb-standings-table th,
    .jlcb-standings-table td,
    body.jlcb-page .jlcb-standings-table th,
    body.jlcb-page .jlcb-standings-table td {
        display: table-cell !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 9px 3px !important;
        border: 0 !important;
        border-bottom: 1px solid #edf4f8 !important;
        text-align: center !important;
        vertical-align: middle !important;
        white-space: nowrap !important;
        background: transparent !important;
        color: #16324f !important;
        font-size: 11px !important;
        line-height: 1.15 !important;
    }

    .jlcb-standings-table th,
    body.jlcb-page .jlcb-standings-table th {
        display: table-cell !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        font-size: 9px !important;
        letter-spacing: .04em !important;
        color: #607692 !important;
        background: #f8fafc !important;
    }

    .jlcb-standings-table td::before,
    body.jlcb-page .jlcb-standings-table td::before {
        display: none !important;
        content: none !important;
    }

    .jlcb-standings-table th:nth-child(1),
    .jlcb-standings-table td:nth-child(1),
    body.jlcb-page .jlcb-standings-table th:nth-child(1),
    body.jlcb-page .jlcb-standings-table td:nth-child(1) {
        width: 28px !important;
    }

    .jlcb-standings-table th:nth-child(2),
    .jlcb-standings-table td:nth-child(2),
    body.jlcb-page .jlcb-standings-table th:nth-child(2),
    body.jlcb-page .jlcb-standings-table td:nth-child(2) {
        width: auto !important;
    }

    .jlcb-standings-table th:nth-child(3),
    .jlcb-standings-table td:nth-child(3),
    body.jlcb-page .jlcb-standings-table th:nth-child(3),
    body.jlcb-page .jlcb-standings-table td:nth-child(3) {
        width: 42px !important;
    }

    .jlcb-standings-table th:nth-child(n+4),
    .jlcb-standings-table td:nth-child(n+4),
    body.jlcb-page .jlcb-standings-table th:nth-child(n+4),
    body.jlcb-page .jlcb-standings-table td:nth-child(n+4) {
        width: 30px !important;
    }

    .jlcb-standings-team,
    body.jlcb-page .jlcb-standings-team {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        text-align: left !important;
        min-width: 0 !important;
    }

    .jlcb-standings-team strong,
    body.jlcb-page .jlcb-standings-team strong {
        display: block !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 12px !important;
        line-height: 1.1 !important;
        color: #0f172a !important;
    }

    .jlcb-standings-team .jlcb-team-flag,
    body.jlcb-page .jlcb-standings-team .jlcb-team-flag {
        width: 16px !important;
        height: 16px !important;
        flex: 0 0 16px !important;
    }

    .jlcb-col-pos strong,
    body.jlcb-page .jlcb-col-pos strong {
        display: inline !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--jlcb-primary, #0f766e) !important;
        font-weight: 900 !important;
    }

    .jlcb-standings-table tbody tr:nth-child(odd),
    body.jlcb-page .jlcb-standings-table tbody tr:nth-child(odd) {
        background: #fbfdff !important;
    }

    .jlcb-standings-table tbody tr:last-child td,
    body.jlcb-page .jlcb-standings-table tbody tr:last-child td {
        border-bottom: 0 !important;
    }
}

/* v1.0.51 - ajustes finos da tabela mobile e menu */
.jlcb-standings-table th:nth-child(2),
body.jlcb-page .jlcb-standings-table th:nth-child(2) {
    text-align: left !important;
    padding-left: 12px !important;
}

.jlcb-standings-table td.jlcb-standings-team,
body.jlcb-page .jlcb-standings-table td.jlcb-standings-team {
    text-align: left !important;
    vertical-align: middle !important;
}

.jlcb-standings-team,
body.jlcb-page .jlcb-standings-team {
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.jlcb-standings-team strong,
body.jlcb-page .jlcb-standings-team strong {
    text-align: left !important;
}

@media (max-width: 820px) {
    .jlcb-standings-table th:nth-child(2),
    body.jlcb-page .jlcb-standings-table th:nth-child(2) {
        text-align: left !important;
        padding-left: 8px !important;
    }

    .jlcb-standings-table td.jlcb-standings-team,
    body.jlcb-page .jlcb-standings-table td.jlcb-standings-team {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        text-align: left !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        vertical-align: middle !important;
    }

    .jlcb-standings-table td.jlcb-standings-team .jlcb-team-flag,
    body.jlcb-page .jlcb-standings-table td.jlcb-standings-team .jlcb-team-flag {
        display: block !important;
        flex: 0 0 16px !important;
        width: 16px !important;
        height: 16px !important;
        margin: 0 !important;
        align-self: center !important;
    }

    .jlcb-standings-table td.jlcb-standings-team strong,
    body.jlcb-page .jlcb-standings-table td.jlcb-standings-team strong {
        flex: 1 1 auto !important;
        display: block !important;
        min-width: 0 !important;
        margin: 0 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.15 !important;
    }

    .jlcb-mobile-menu summary,
    body.jlcb-page .jlcb-mobile-menu summary {
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 13px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: 0 8px 20px rgba(15,118,110,.22) !important;
    }

    .jlcb-mobile-menu summary strong,
    body.jlcb-page .jlcb-mobile-menu summary strong {
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }
}
