/*
 * Poolbaas Remaining Screens Visual V1
 *
 * Gedeelde productlaag voor:
 * - Mijn spel
 * - Voorspellen
 * - Wedstrijd
 * - Profiel
 * - Meldingen
 * - Auth
 *
 * Kantoor en Stand zijn uitgesloten.
 */


/* ========================================================
   TOKENS EN PAGINACANVAS
   ======================================================== */

body.pbx-visual-v1 {
    --pbx-bg: #06091f;
    --pbx-bg-deep: #020416;

    --pbx-surface: #10133a;
    --pbx-surface-2: #171346;
    --pbx-surface-3: #27145f;

    --pbx-soft:
        rgba(255, 255, 255, 0.045);

    --pbx-soft-hover:
        rgba(255, 255, 255, 0.072);

    --pbx-text: #faf9ff;
    --pbx-muted: #b7b3cc;
    --pbx-faint: #817d98;

    --pbx-line:
        rgba(255, 255, 255, 0.105);

    --pbx-line-strong:
        rgba(255, 255, 255, 0.18);

    --pbx-purple: #8054ec;
    --pbx-purple-light: #b595ff;

    --pbx-yellow: #ffda4d;
    --pbx-green: #39d58c;
    --pbx-red: #ff687d;

    --pbx-radius-sm: 9px;
    --pbx-radius-md: 14px;
    --pbx-radius-lg: 19px;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 10% 4%,
            rgba(104, 55, 216, 0.24),
            transparent 30rem
        ),
        radial-gradient(
            circle at 90% 37%,
            rgba(54, 30, 145, 0.17),
            transparent 32rem
        ),
        linear-gradient(
            180deg,
            var(--pbx-bg),
            var(--pbx-bg-deep)
        ) !important;

    color: var(--pbx-text) !important;
}


body.pbx-visual-v1
.main-content {
    width:
        min(
            calc(100% - 30px),
            1080px
        ) !important;

    max-width: none !important;

    margin:
        0 auto !important;

    padding:
        22px 0
        calc(
            132px
            + env(safe-area-inset-bottom)
        ) !important;

    overflow: visible !important;

    background:
        transparent !important;
}


body.pbx-visual-v1
.main-content,
body.pbx-visual-v1
.main-content *,
body.pbx-visual-v1
.main-content *::before,
body.pbx-visual-v1
.main-content *::after {
    box-sizing: border-box;
}


body.pbx-visual-v1
.main-content :where(
    h1,
    h2,
    h3,
    p
) {
    margin: 0;
}


body.pbx-visual-v1
.main-content a {
    text-decoration: none;
}


body.pbx-visual-v1
.main-content img {
    max-width: 100%;
}


/* ========================================================
   ALGEMENE TYPOGRAFIE
   ======================================================== */

body.pbx-visual-v1
.main-content h1 {
    color: #fff !important;

    font-size:
        clamp(
            2rem,
            5vw,
            3.65rem
        ) !important;

    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
    line-height: 0.97 !important;
}


body.pbx-visual-v1
.main-content h2 {
    color: #fff !important;

    font-weight: 920 !important;
    letter-spacing: -0.03em !important;
}


body.pbx-visual-v1
.main-content :where(
    p,
    small,
    .muted,
    [class*="subtitle"],
    [class*="description"],
    [class*="meta"]
) {
    color: var(--pbx-muted);
}


/* ========================================================
   FORMULIEREN EN ACTIES
   ======================================================== */

body.pbx-visual-v1
.main-content :where(
    input,
    select,
    textarea
) {
    border:
        1px solid
        var(--pbx-line-strong) !important;

    border-radius:
        var(--pbx-radius-sm) !important;

    background:
        rgba(18, 17, 56, 0.94) !important;

    color: #fff !important;

    box-shadow:
        none !important;
}


body.pbx-visual-v1
.main-content :where(
    input,
    select
) {
    min-height: 42px;
}


body.pbx-visual-v1
.main-content textarea {
    min-height: 100px;
}


body.pbx-visual-v1
.main-content :where(
    input,
    select,
    textarea
):focus {
    outline: none !important;

    border-color:
        rgba(255, 218, 77, 0.62) !important;

    box-shadow:
        0 0 0 3px
        rgba(255, 218, 77, 0.13) !important;
}


body.pbx-visual-v1
.main-content :where(
    button,
    .button,
    .btn,
    [class*="primary-action"],
    [class*="primary-button"]
) {
    border-radius:
        11px !important;

    font-weight:
        900 !important;

    box-shadow:
        none !important;
}


body.pbx-visual-v1
.main-content :where(
    button[type="submit"],
    .btn-primary,
    .button-primary,
    [class*="primary-action"],
    [class*="primary-button"]
) {
    border-color:
        transparent !important;

    background:
        linear-gradient(
            135deg,
            #ffe879,
            var(--pbx-yellow)
        ) !important;

    color:
        #1d1424 !important;
}


body.pbx-visual-v1
.main-content :where(
    a,
    button,
    input,
    select,
    textarea,
    summary
):focus-visible {
    outline: none !important;

    box-shadow:
        0 0 0 3px
        rgba(255, 218, 77, 0.21) !important;
}


/* ========================================================
   GENERIEKE OPPERVLAKKEN
   ======================================================== */

body.pbx-visual-v1
.main-content :where(
    [class*="card"],
    [class*="panel"],
    [class*="summary"],
    [class*="overview"]
) {
    border-color:
        var(--pbx-line) !important;

    box-shadow:
        none !important;
}


body.pbx-visual-v1
.main-content :where(
    table,
    [role="table"]
) {
    overflow: hidden;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        var(--pbx-radius-md) !important;

    background:
        rgba(255, 255, 255, 0.03) !important;
}


body.pbx-visual-v1
.main-content :where(
    li,
    tr
) {
    border-color:
        var(--pbx-line) !important;
}


/* ========================================================
   MIJN SPEL
   ======================================================== */

body.pbx-my-game
.main-content {
    display: grid;
    gap: 18px;
}


body.pbx-my-game
.main-content
:where(
    [class*="hero"],
    [class*="intro"]
) {
    min-height: 190px !important;

    padding:
        clamp(
            22px,
            4vw,
            34px
        ) !important;

    overflow: hidden !important;

    border:
        1px solid
        rgba(145, 105, 255, 0.31) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        radial-gradient(
            circle at 85% 40%,
            rgba(131, 76, 255, 0.28),
            transparent 18rem
        ),
        linear-gradient(
            135deg,
            #0c1744,
            #28115d
        ) !important;
}


body.pbx-my-game
.main-content
:where(
    [class*="quick"],
    [class*="action"]
) {
    gap: 9px !important;
}


body.pbx-my-game
.main-content
:where(
    [class*="match"],
    [class*="fixture"]
) {
    border-color:
        var(--pbx-line) !important;
}


body.pbx-my-game
.main-content
:where(
    [class*="stat"],
    [class*="metric"]
) {
    background:
        rgba(255, 255, 255, 0.045) !important;
}


/* ========================================================
   VOORSPELLEN
   ======================================================== */

body.pbx-predict
.pbf5-page {
    display: grid !important;
    gap: 16px !important;

    color: var(--pbx-text) !important;
}


body.pbx-predict
.pbf5-page
:where(
    header,
    [class*="hero"],
    [class*="intro"]
):first-child {
    border:
        1px solid
        rgba(145, 105, 255, 0.3) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        linear-gradient(
            135deg,
            #0c1743,
            #28115e
        ) !important;
}


body.pbx-predict
.pbf5-page
:where(
    [class*="match"],
    [class*="fixture"],
    [class*="prediction"]
) {
    border-color:
        var(--pbx-line) !important;

    box-shadow:
        none !important;
}


body.pbx-predict
.pbf5-page
:where(
    article,
    section
) {
    background:
        transparent !important;
}


body.pbx-predict
.pbf5-page
:where(
    input[type="number"],
    input[inputmode="numeric"]
) {
    width: 54px !important;
    min-width: 54px !important;
    height: 50px !important;
    min-height: 50px !important;

    padding: 0 !important;

    border-radius:
        11px !important;

    background:
        linear-gradient(
            135deg,
            #372071,
            #201645
        ) !important;

    color: #fff !important;

    font-size: 1.12rem !important;
    font-weight: 950 !important;

    text-align: center !important;
}


body.pbx-predict
.pbf5-page
:where(
    [class*="savebar"],
    [class*="save-bar"],
    [class*="sticky"]
) {
    border:
        1px solid
        rgba(150, 111, 255, 0.32) !important;

    background:
        rgba(20, 16, 57, 0.96) !important;

    backdrop-filter:
        blur(16px);
}


body.pbx-predict
.pbf5-page details {
    border:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        var(--pbx-radius-md) !important;

    background:
        rgba(255, 255, 255, 0.03) !important;
}


/* ========================================================
   WEDSTRIJDDETAIL
   ======================================================== */

body.pbx-match
.pmv3-page {
    display: grid !important;
    gap: 16px !important;

    color: var(--pbx-text) !important;
}


body.pbx-match
.pmv3-page
:where(
    [class*="hero"],
    [class*="identity"],
    [class*="scoreboard"]
) {
    border:
        1px solid
        rgba(145, 105, 255, 0.3) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(127, 75, 238, 0.24),
            transparent 20rem
        ),
        linear-gradient(
            135deg,
            #0d1743,
            #241251
        ) !important;

    box-shadow:
        none !important;
}


body.pbx-match
.pmv3-page
:where(
    [class*="score"]
) {
    color: #fff;
}


body.pbx-match
.pmv3-page
:where(
    [class*="distribution"],
    [class*="prediction-list"],
    [class*="participants"],
    [class*="breakdown"]
) {
    overflow: hidden;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        var(--pbx-radius-md) !important;

    background:
        rgba(255, 255, 255, 0.03) !important;
}


body.pbx-match
.pmv3-page
:where(
    li,
    [class*="row"]
) {
    box-shadow:
        none !important;
}


/* ========================================================
   PROFIEL
   ======================================================== */

body.pbx-profile
.main-content {
    display: grid;
    gap: 16px;
}


body.pbx-profile
.main-content
:where(
    [class*="profile-hero"],
    [class*="profile-header"],
    [class*="identity"],
    [class*="intro"]
) {
    border:
        1px solid
        rgba(145, 105, 255, 0.3) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        radial-gradient(
            circle at 86% 42%,
            rgba(129, 75, 245, 0.26),
            transparent 19rem
        ),
        linear-gradient(
            135deg,
            #0c1743,
            #27115b
        ) !important;
}


body.pbx-profile
.main-content
:where(
    [class*="stats"],
    [class*="career"],
    [class*="performance"],
    [class*="awards"]
) {
    border:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        var(--pbx-radius-md) !important;

    background:
        rgba(255, 255, 255, 0.032) !important;
}


body.pbx-profile
.main-content
:where(
    [class*="badge"],
    [class*="award"],
    [class*="title"]
) {
    box-shadow:
        none !important;
}


body.pbx-profile
.main-content
:where(
    [class*="match"],
    [class*="history"],
    [class*="recent"]
)
:where(
    li,
    [class*="row"]
) {
    border-bottom:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        0 !important;

    background:
        transparent !important;
}


/* ========================================================
   MELDINGEN
   ======================================================== */

body.pbx-notifications
.main-content {
    display: grid;
    gap: 14px;
}


body.pbx-notifications
.main-content
:where(
    [class*="hero"],
    [class*="header"],
    [class*="intro"]
):first-child {
    min-height: 110px !important;

    padding: 20px !important;

    border:
        1px solid
        rgba(145, 105, 255, 0.29) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        linear-gradient(
            135deg,
            #0d1742,
            #27115a
        ) !important;
}


body.pbx-notifications
.main-content
:where(
    ul,
    ol,
    [class*="list"]
) {
    overflow: hidden;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius:
        var(--pbx-radius-md) !important;

    background:
        rgba(255, 255, 255, 0.03) !important;
}


body.pbx-notifications
.main-content
:where(
    li,
    [class*="notification"],
    [class*="message-row"]
) {
    min-height: 68px !important;

    border-radius:
        0 !important;

    background:
        transparent !important;

    box-shadow:
        none !important;
}


body.pbx-notifications
.main-content
:where(
    li,
    [class*="notification"],
    [class*="message-row"]
):not(:last-child) {
    border-bottom:
        1px solid
        var(--pbx-line) !important;
}


/* ========================================================
   AUTH
   ======================================================== */

body.pbx-auth
.main-content {
    width:
        min(
            calc(100% - 26px),
            480px
        ) !important;

    min-height:
        calc(
            100vh
            - 190px
        );

    display: grid;
    align-content: center;
}


body.pbx-auth
.main-content
:where(
    form,
    [class*="auth"],
    [class*="login"],
    [class*="register"],
    [class*="password"]
) {
    border-color:
        var(--pbx-line) !important;

    box-shadow:
        none !important;
}


body.pbx-auth
.main-content
form {
    padding:
        clamp(
            20px,
            5vw,
            32px
        ) !important;

    border:
        1px solid
        rgba(145, 105, 255, 0.3) !important;

    border-radius:
        var(--pbx-radius-lg) !important;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(125, 72, 239, 0.19),
            transparent 17rem
        ),
        linear-gradient(
            145deg,
            rgba(16, 19, 58, 0.98),
            rgba(28, 17, 67, 0.98)
        ) !important;
}


body.pbx-auth
.main-content label {
    color: var(--pbx-muted) !important;

    font-size: 0.72rem !important;
    font-weight: 800 !important;
}


body.pbx-auth
.main-content
:where(
    input,
    select
) {
    width: 100%;
}


body.pbx-auth
.main-content
button[type="submit"] {
    width: 100%;
    min-height: 48px;
}


/* ========================================================
   MOBIEL
   ======================================================== */

@media (max-width: 720px) {
    body.pbx-visual-v1
    .main-content {
        width:
            min(
                calc(100% - 16px),
                1080px
            ) !important;

        padding-top:
            13px !important;
    }


    body.pbx-visual-v1
    .main-content h1 {
        font-size:
            clamp(
                1.9rem,
                8vw,
                2.65rem
            ) !important;
    }


    body.pbx-my-game
    .main-content
    :where(
        [class*="hero"],
        [class*="intro"]
    ) {
        min-height:
            150px !important;

        padding:
            17px 15px !important;

        border-radius:
            16px !important;
    }


    body.pbx-predict
    .pbf5-page {
        gap: 12px !important;
    }


    body.pbx-predict
    .pbf5-page
    :where(
        input[type="number"],
        input[inputmode="numeric"]
    ) {
        width: 46px !important;
        min-width: 46px !important;
        height: 44px !important;
        min-height: 44px !important;

        font-size: 1rem !important;
    }


    body.pbx-match
    .pmv3-page {
        gap: 12px !important;
    }


    body.pbx-notifications
    .main-content
    :where(
        li,
        [class*="notification"],
        [class*="message-row"]
    ) {
        min-height:
            61px !important;
    }


    body.pbx-auth
    .main-content {
        align-content:
            start;

        padding-top:
            24px !important;
    }
}


/* ========================================================
   REDUCED MOTION
   ======================================================== */

@media (prefers-reduced-motion: reduce) {
    body.pbx-visual-v1
    .main-content *,
    body.pbx-visual-v1
    .main-content *::before,
    body.pbx-visual-v1
    .main-content *::after {
        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;
    }
}

/* === POOLBAAS MY GAME FOCUS V2 START === */


/* ========================================================
   PAGINA
   ======================================================== */

body.pbx-my-game .pah-page {
    display: grid !important;
    gap: 16px !important;

    padding: 0 0 22px !important;

    color: var(--pbx-text) !important;
}


body.pbx-my-game .pah-nav,
body.pbx-my-game .pah-action-banner,
body.pbx-my-game .pah-summary,
body.pbx-my-game .pah-stand,
body.pbx-my-game .pah-results {
    display: none !important;
}


/* ========================================================
   COMPACTE HERO
   ======================================================== */

body.pbx-my-game .pah-hero {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        86px !important;

    align-items: center !important;
    gap: 16px !important;

    min-height: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 20px 22px !important;

    overflow: hidden !important;

    border:
        1px solid
        rgba(145, 105, 255, 0.32) !important;

    border-radius: 18px !important;

    background:
        radial-gradient(
            circle at 88% 35%,
            rgba(132, 77, 255, 0.3),
            transparent 15rem
        ),
        linear-gradient(
            135deg,
            #0c1744,
            #28115d
        ) !important;

    box-shadow: none !important;
}


body.pbx-my-game .pah-hero__copy {
    display: grid !important;
    gap: 6px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}


body.pbx-my-game .pah-hero__copy::before,
body.pbx-my-game .pah-hero__copy::after {
    display: none !important;
}


body.pbx-my-game .pah-hero .pah-eyebrow {
    color: var(--pbx-yellow) !important;

    font-size: 0.64rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.13em !important;
}


body.pbx-my-game .pah-hero h1 {
    margin: 0 !important;

    color: #fff !important;

    font-size:
        clamp(
            2.05rem,
            5vw,
            3.15rem
        ) !important;

    line-height: 0.96 !important;
}


body.pbx-my-game
.pah-hero__copy > p {
    display: none !important;
}


body.pbx-my-game .pah-hero__week {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

    width: fit-content !important;
    max-width: 100% !important;

    margin: 4px 0 0 !important;
    padding: 7px 10px !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.13) !important;

    border-radius: 999px !important;

    background:
        rgba(255, 255, 255, 0.06) !important;

    box-shadow: none !important;
}


body.pbx-my-game
.pah-hero__week span {
    color: var(--pbx-muted) !important;

    font-size: 0.56rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
}


body.pbx-my-game
.pah-hero__week strong {
    max-width: 250px !important;

    overflow: hidden !important;

    color: #fff !important;

    font-size: 0.68rem !important;

    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}


body.pbx-my-game .pah-progress {
    display: grid !important;
    place-items: center !important;

    width: 78px !important;
    height: 78px !important;
    min-width: 78px !important;

    margin: 0 !important;
    padding: 6px !important;

    border-radius: 50% !important;

    box-shadow: none !important;
}


body.pbx-my-game .pah-progress > div {
    width: 100% !important;
    height: 100% !important;

    display: grid !important;
    place-content: center !important;

    border-radius: 50% !important;

    background:
        rgba(12, 12, 48, 0.9) !important;
}


body.pbx-my-game .pah-progress strong {
    font-size: 1.15rem !important;
}


body.pbx-my-game .pah-progress span,
body.pbx-my-game .pah-progress small {
    font-size: 0.48rem !important;
}


/* ========================================================
   VOLGENDE WEDSTRIJD
   ======================================================== */

body.pbx-my-game .pah-next {
    overflow: hidden !important;

    margin: 0 !important;
    padding: 0 !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 17px !important;

    background:
        linear-gradient(
            135deg,
            rgba(17, 19, 58, 0.98),
            rgba(34, 19, 77, 0.98)
        ) !important;

    box-shadow: none !important;
}


body.pbx-my-game
.pah-next .pah-section-head {
    min-height: 48px !important;

    margin: 0 !important;
    padding: 11px 15px !important;

    border-bottom:
        1px solid
        var(--pbx-line) !important;

    background:
        transparent !important;
}


body.pbx-my-game
.pah-next .pah-section-head h2 {
    display: none !important;
}


body.pbx-my-game
.pah-next .pah-section-head p {
    display: none !important;
}


body.pbx-my-game
.pah-next .pah-eyebrow {
    color: var(--pbx-yellow) !important;

    font-size: 0.61rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
}


body.pbx-my-game .pah-next__date {
    padding: 8px 15px 0 !important;

    color: var(--pbx-muted) !important;

    font-size: 0.62rem !important;
    font-weight: 800 !important;
}


body.pbx-my-game .pah-next__fixture {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        108px
        minmax(0, 1fr) !important;

    align-items: center !important;
    gap: 10px !important;

    padding: 12px 15px 16px !important;
}


body.pbx-my-game .pah-next-team {
    display: grid !important;
    justify-items: center !important;
    gap: 7px !important;

    min-width: 0 !important;

    text-align: center !important;
}


body.pbx-my-game
.pah-next-team > strong {
    min-width: 0 !important;
    max-width: 100% !important;

    overflow: hidden !important;

    color: #fff !important;

    font-size: 0.73rem !important;
    line-height: 1.2 !important;

    text-overflow: ellipsis !important;
}


body.pbx-my-game
.pah-logo.is-large {
    width: 49px !important;
    height: 49px !important;

    border-radius: 12px !important;
}


body.pbx-my-game .pah-next__middle {
    display: grid !important;
    justify-items: center !important;
    gap: 3px !important;

    padding: 10px 7px !important;

    border:
        1px solid
        rgba(143, 99, 242, 0.25) !important;

    border-radius: 11px !important;

    background:
        rgba(126, 76, 226, 0.16) !important;

    box-shadow: none !important;
}


body.pbx-my-game
.pah-next__middle span,
body.pbx-my-game
.pah-next__middle small {
    color: var(--pbx-muted) !important;
    font-size: 0.53rem !important;
}


body.pbx-my-game
.pah-next__middle strong {
    color: #fff !important;

    font-size: 1.3rem !important;
    line-height: 1 !important;
}


body.pbx-my-game .pah-next__footer {
    display: grid !important;
    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 8px !important;

    margin: 0 !important;
    padding: 10px !important;

    border-top:
        1px solid
        var(--pbx-line) !important;

    background:
        rgba(255, 255, 255, 0.025) !important;
}


body.pbx-my-game
.pah-next__footer a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;

    min-height: 42px !important;

    padding: 0 12px !important;

    border-radius: 10px !important;

    font-size: 0.68rem !important;
    font-weight: 900 !important;
}


body.pbx-my-game .pah-secondary-link {
    border:
        1px solid
        var(--pbx-line-strong) !important;

    background:
        rgba(255, 255, 255, 0.04) !important;

    color: #fff !important;
}


body.pbx-my-game .pah-primary-link {
    border-color:
        transparent !important;

    background:
        linear-gradient(
            135deg,
            #ffe878,
            var(--pbx-yellow)
        ) !important;

    color: #1d1424 !important;
}


/* ========================================================
   SPEELWEEK
   ======================================================== */

body.pbx-my-game .pah-week {
    display: grid !important;
    gap: 9px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}


body.pbx-my-game
.pah-week > .pah-section-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 14px !important;

    margin: 0 !important;
    padding: 2px 2px 7px !important;

    border: 0 !important;

    background: transparent !important;
}


body.pbx-my-game
.pah-section-head > div {
    display: grid !important;
    gap: 3px !important;
}


body.pbx-my-game
.pah-section-head .pah-eyebrow {
    color: var(--pbx-purple-light) !important;

    font-size: 0.59rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
}


body.pbx-my-game
.pah-section-head h2 {
    color: #fff !important;

    font-size: 1.22rem !important;
    line-height: 1.08 !important;
}


body.pbx-my-game
.pah-section-head p {
    display: none !important;
}


body.pbx-my-game
.pah-section-head > a {
    color: var(--pbx-yellow) !important;

    font-size: 0.63rem !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
}


/* ========================================================
   ÉÉN DOORLOPENDE WEDSTRIJDLIST
   ======================================================== */

body.pbx-my-game .pah-match-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;

    overflow: hidden !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 16px !important;

    background:
        rgba(255, 255, 255, 0.028) !important;
}


body.pbx-my-game .pah-match {
    display: grid !important;
    grid-template-columns:
        124px
        minmax(0, 1fr)
        126px !important;

    align-items: stretch !important;
    gap: 0 !important;

    min-width: 0 !important;
    min-height: 88px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}


body.pbx-my-game
.pah-match:not(:last-child) {
    border-bottom:
        1px solid
        var(--pbx-line) !important;
}


body.pbx-my-game
.pah-match:hover {
    background:
        rgba(255, 255, 255, 0.04) !important;
}


body.pbx-my-game .pah-match__meta {
    display: grid !important;
    align-content: center !important;
    gap: 4px !important;

    min-width: 0 !important;

    padding: 12px 13px !important;

    border: 0 !important;
    border-right:
        1px solid
        var(--pbx-line) !important;

    background: transparent !important;
}


body.pbx-my-game
.pah-match__meta span {
    color: var(--pbx-faint) !important;

    font-size: 0.49rem !important;
}


body.pbx-my-game
.pah-match__meta time {
    color: var(--pbx-muted) !important;

    font-size: 0.62rem !important;
    line-height: 1.3 !important;
}


body.pbx-my-game .pah-match__teams {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        74px
        minmax(0, 1fr) !important;

    align-items: center !important;
    gap: 7px !important;

    min-width: 0 !important;

    padding: 10px 12px !important;

    color: inherit !important;
}


body.pbx-my-game
.pah-match__teams
> div:not(.pah-match__prediction) {
    display: grid !important;
    grid-template-columns:
        34px minmax(0, 1fr) !important;

    align-items: center !important;
    justify-items: stretch !important;
    gap: 7px !important;

    min-width: 0 !important;

    text-align: left !important;
}


body.pbx-my-game
.pah-match__teams
> div:last-child:not(.pah-match__prediction) {
    grid-template-columns:
        minmax(0, 1fr) 34px !important;

    text-align: right !important;
}


body.pbx-my-game
.pah-match__teams
> div:last-child:not(.pah-match__prediction)
.pah-logo {
    grid-column: 2 !important;
    grid-row: 1 !important;
}


body.pbx-my-game
.pah-match__teams
> div:last-child:not(.pah-match__prediction)
> strong {
    grid-column: 1 !important;
    grid-row: 1 !important;
}


body.pbx-my-game
.pah-match .pah-logo {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;

    border-radius: 9px !important;

    background: #fff !important;
}


body.pbx-my-game
.pah-match__teams
> div:not(.pah-match__prediction)
> strong {
    min-width: 0 !important;
    max-width: none !important;

    overflow: hidden !important;

    color: #fff !important;

    font-size: 0.64rem !important;
    line-height: 1.2 !important;

    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}


body.pbx-my-game
.pah-match__prediction {
    display: grid !important;
    justify-items: center !important;
    gap: 2px !important;

    min-width: 0 !important;

    padding: 8px 5px !important;

    border:
        1px solid
        rgba(143, 100, 241, 0.2) !important;

    border-radius: 9px !important;

    background:
        rgba(125, 75, 224, 0.15) !important;
}


body.pbx-my-game
.pah-match__prediction span {
    color: var(--pbx-muted) !important;

    font-size: 0.46rem !important;
}


body.pbx-my-game
.pah-match__prediction strong {
    color: #fff !important;

    font-size: 0.9rem !important;
    line-height: 1 !important;
}


body.pbx-my-game
.pah-match__footer {
    display: grid !important;
    align-content: center !important;
    gap: 6px !important;

    min-width: 0 !important;

    padding: 10px !important;

    border: 0 !important;
    border-left:
        1px solid
        var(--pbx-line) !important;

    background: transparent !important;
}


body.pbx-my-game
.pah-match__footer > div {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 3px !important;
}


body.pbx-my-game
.pah-match__footer span {
    padding: 4px 6px !important;

    font-size: 0.46rem !important;
}


body.pbx-my-game
.pah-match__footer > a {
    color: var(--pbx-yellow) !important;

    font-size: 0.58rem !important;
    font-weight: 900 !important;

    text-align: right !important;
}


/* ========================================================
   MOBIEL
   ======================================================== */

@media (max-width: 720px) {
    body.pbx-my-game .pah-page {
        gap: 12px !important;
    }


    body.pbx-my-game .pah-hero {
        grid-template-columns:
            minmax(0, 1fr)
            66px !important;

        gap: 10px !important;

        padding: 14px 15px !important;

        border-radius: 15px !important;
    }


    body.pbx-my-game
    .pah-hero .pah-eyebrow {
        font-size: 0.53rem !important;
    }


    body.pbx-my-game .pah-hero h1 {
        font-size: 2rem !important;
    }


    body.pbx-my-game
    .pah-hero__week {
        max-width: 100% !important;

        padding: 5px 8px !important;
    }


    body.pbx-my-game
    .pah-hero__week span {
        display: none !important;
    }


    body.pbx-my-game
    .pah-hero__week strong {
        max-width: 210px !important;

        font-size: 0.58rem !important;
    }


    body.pbx-my-game .pah-progress {
        width: 62px !important;
        height: 62px !important;
        min-width: 62px !important;

        padding: 5px !important;
    }


    body.pbx-my-game
    .pah-progress strong {
        font-size: 0.92rem !important;
    }


    body.pbx-my-game
    .pah-progress span,
    body.pbx-my-game
    .pah-progress small {
        font-size: 0.4rem !important;
    }


    body.pbx-my-game
    .pah-next .pah-section-head {
        min-height: 42px !important;

        padding: 9px 11px !important;
    }


    body.pbx-my-game
    .pah-next__date {
        padding: 7px 11px 0 !important;

        font-size: 0.53rem !important;
    }


    body.pbx-my-game
    .pah-next__fixture {
        grid-template-columns:
            minmax(0, 1fr)
            86px
            minmax(0, 1fr) !important;

        gap: 6px !important;

        padding: 10px 9px 12px !important;
    }


    body.pbx-my-game
    .pah-logo.is-large {
        width: 42px !important;
        height: 42px !important;
    }


    body.pbx-my-game
    .pah-next-team > strong {
        font-size: 0.62rem !important;
        white-space: normal !important;
    }


    body.pbx-my-game
    .pah-next__middle {
        padding: 8px 4px !important;
    }


    body.pbx-my-game
    .pah-next__middle strong {
        font-size: 1.08rem !important;
    }


    body.pbx-my-game
    .pah-next__footer {
        padding: 8px !important;
    }


    body.pbx-my-game
    .pah-next__footer a {
        min-height: 38px !important;

        padding: 0 7px !important;

        font-size: 0.58rem !important;
    }


    body.pbx-my-game
    .pah-week > .pah-section-head {
        padding:
            1px 2px 6px !important;
    }


    body.pbx-my-game
    .pah-section-head h2 {
        font-size: 1rem !important;
    }


    body.pbx-my-game
    .pah-section-head > a {
        font-size: 0.55rem !important;
    }


    body.pbx-my-game .pah-match {
        grid-template-columns: 1fr !important;

        min-height: 0 !important;
    }


    body.pbx-my-game
    .pah-match__meta {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;

        padding: 7px 10px !important;

        border-right: 0 !important;
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.065) !important;
    }


    body.pbx-my-game
    .pah-match__meta span {
        display: none !important;
    }


    body.pbx-my-game
    .pah-match__meta time {
        font-size: 0.52rem !important;
    }


    body.pbx-my-game
    .pah-match__teams {
        grid-template-columns:
            minmax(0, 1fr)
            62px
            minmax(0, 1fr) !important;

        gap: 5px !important;

        padding: 9px 10px !important;
    }


    body.pbx-my-game
    .pah-match__teams
    > div:not(.pah-match__prediction),
    body.pbx-my-game
    .pah-match__teams
    > div:last-child:not(.pah-match__prediction) {
        grid-template-columns: 1fr !important;

        justify-items: center !important;
        gap: 4px !important;

        text-align: center !important;
    }


    body.pbx-my-game
    .pah-match__teams
    > div:last-child:not(.pah-match__prediction)
    .pah-logo,
    body.pbx-my-game
    .pah-match__teams
    > div:last-child:not(.pah-match__prediction)
    > strong {
        grid-column: 1 !important;
        grid-row: auto !important;
    }


    body.pbx-my-game
    .pah-match .pah-logo {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }


    body.pbx-my-game
    .pah-match__teams
    > div:not(.pah-match__prediction)
    > strong {
        max-width: 105px !important;

        font-size: 0.56rem !important;
        white-space: normal !important;

        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;

        line-clamp: 2 !important;
    }


    body.pbx-my-game
    .pah-match__prediction {
        padding: 7px 3px !important;
    }


    body.pbx-my-game
    .pah-match__prediction strong {
        font-size: 0.8rem !important;
    }


    body.pbx-my-game
    .pah-match__footer {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 7px !important;

        padding: 7px 10px !important;

        border-left: 0 !important;
        border-top:
            1px solid
            rgba(255, 255, 255, 0.065) !important;
    }


    body.pbx-my-game
    .pah-match__footer > div {
        justify-content: flex-start !important;
    }


    body.pbx-my-game
    .pah-match__footer > a {
        white-space: nowrap !important;
    }
}


/* === POOLBAAS MY GAME FOCUS V2 END === */

/* === POOLBAAS MY GAME POLISH V3 START === */


/* ========================================================
   PAGINARITME
   ======================================================== */

body.pbx-my-game .pah-page {
    gap: 13px !important;

    padding-bottom:
        calc(
            38px
            + env(safe-area-inset-bottom)
        ) !important;
}


/* ========================================================
   HERO: ECHT COMPACT
   ======================================================== */

body.pbx-my-game .pah-hero {
    position: relative !important;

    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        72px !important;

    align-items: center !important;
    gap: 14px !important;

    width: 100% !important;

    height: 162px !important;
    min-height: 162px !important;
    max-height: 162px !important;

    margin: 0 !important;
    padding: 20px 22px !important;

    aspect-ratio: auto !important;

    overflow: hidden !important;

    border-radius: 17px !important;

    background:
        radial-gradient(
            circle at 86% 38%,
            rgba(144, 83, 255, 0.34),
            transparent 12rem
        ),
        linear-gradient(
            130deg,
            #101b4c 0%,
            #24135c 58%,
            #3a176f 100%
        ) !important;
}


body.pbx-my-game .pah-hero::before,
body.pbx-my-game .pah-hero::after,
body.pbx-my-game .pah-hero__copy::before,
body.pbx-my-game .pah-hero__copy::after,
body.pbx-my-game .pah-hero__week::before,
body.pbx-my-game .pah-hero__week::after {
    display: none !important;

    width: 0 !important;
    height: 0 !important;

    content: none !important;
}


body.pbx-my-game .pah-hero__copy {
    position: static !important;
    inset: auto !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 5px !important;

    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
}


body.pbx-my-game
.pah-hero .pah-eyebrow {
    margin: 0 !important;

    font-size: 0.58rem !important;
}


body.pbx-my-game .pah-hero h1 {
    margin: 0 !important;

    font-size:
        clamp(
            2rem,
            5.2vw,
            3rem
        ) !important;

    line-height: 0.93 !important;
}


body.pbx-my-game .pah-hero__week {
    position: static !important;
    inset: auto !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;

    width: auto !important;
    max-width: 100% !important;

    height: auto !important;
    min-height: 27px !important;
    max-height: 27px !important;

    margin: 5px 0 0 !important;
    padding: 0 9px !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.15) !important;

    border-radius: 999px !important;

    background:
        rgba(255, 255, 255, 0.075) !important;

    transform: none !important;
}


body.pbx-my-game
.pah-hero__week span {
    display: none !important;
}


body.pbx-my-game
.pah-hero__week strong {
    max-width: 300px !important;

    overflow: hidden !important;

    font-size: 0.61rem !important;
    line-height: 1 !important;

    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}


body.pbx-my-game .pah-progress {
    position: static !important;
    inset: auto !important;

    display: grid !important;
    place-items: center !important;

    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
    max-width: 68px !important;
    max-height: 68px !important;

    margin: 0 !important;
    padding: 5px !important;

    aspect-ratio: 1 !important;

    transform: none !important;
}


body.pbx-my-game .pah-progress > div {
    width: 100% !important;
    height: 100% !important;

    background:
        linear-gradient(
            145deg,
            #131437,
            #080b25
        ) !important;
}


body.pbx-my-game .pah-progress strong {
    font-size: 1rem !important;
}


body.pbx-my-game .pah-progress span,
body.pbx-my-game .pah-progress small {
    font-size: 0.41rem !important;
}


/* ========================================================
   VOLGENDE WEDSTRIJD
   ======================================================== */

body.pbx-my-game .pah-next {
    border-color:
        rgba(143, 105, 246, 0.25) !important;

    background:
        linear-gradient(
            135deg,
            rgba(16, 20, 59, 0.99),
            rgba(31, 19, 75, 0.99)
        ) !important;
}


body.pbx-my-game
.pah-next .pah-section-head {
    min-height: 42px !important;

    padding: 9px 13px !important;
}


body.pbx-my-game .pah-next__date {
    padding: 6px 13px 0 !important;
}


body.pbx-my-game .pah-next__fixture {
    padding: 9px 12px 12px !important;
}


body.pbx-my-game
.pah-next .pah-logo.is-large {
    width: 43px !important;
    height: 43px !important;
}


body.pbx-my-game .pah-next__middle {
    min-height: 76px !important;

    background:
        linear-gradient(
            145deg,
            rgba(111, 65, 213, 0.27),
            rgba(59, 34, 127, 0.22)
        ) !important;
}


body.pbx-my-game .pah-next__footer {
    padding: 8px !important;
}


body.pbx-my-game
.pah-next__footer a {
    min-height: 38px !important;
}


/* ========================================================
   SECTIEKOP
   ======================================================== */

body.pbx-my-game
.pah-week > .pah-section-head {
    padding: 4px 3px 7px !important;
}


body.pbx-my-game
.pah-section-head h2 {
    font-size: 1.08rem !important;
}


/* ========================================================
   COMPACTE WEDSTRIJDRIJEN
   ======================================================== */

body.pbx-my-game .pah-match-list {
    border-radius: 15px !important;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.038),
            rgba(255, 255, 255, 0.018)
        ) !important;
}


body.pbx-my-game .pah-match {
    position: relative !important;

    min-height: 0 !important;

    transition:
        background-color 150ms ease !important;
}


body.pbx-my-game
.pah-match:nth-child(even) {
    background:
        rgba(255, 255, 255, 0.018) !important;
}


body.pbx-my-game
.pah-match:has(
    [class*="saved"]
) {
    box-shadow:
        inset 3px 0 0
        rgba(57, 213, 140, 0.7) !important;
}


body.pbx-my-game
.pah-match:has(
    [class*="finished"]
),
body.pbx-my-game
.pah-match:has(
    [class*="closed"]
) {
    box-shadow:
        inset 3px 0 0
        rgba(181, 149, 255, 0.52) !important;
}


body.pbx-my-game .pah-match__prediction {
    background:
        linear-gradient(
            145deg,
            rgba(116, 68, 218, 0.27),
            rgba(57, 33, 126, 0.23)
        ) !important;

    border-color:
        rgba(153, 112, 255, 0.25) !important;
}


body.pbx-my-game
.pah-match__footer span {
    border:
        1px solid
        rgba(255, 255, 255, 0.08) !important;
}


body.pbx-my-game
.pah-match__footer > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
}


/* ========================================================
   MOBIEL
   ======================================================== */

@media (max-width: 720px) {
    body.pbx-my-game .pah-page {
        gap: 10px !important;
    }


    body.pbx-my-game .pah-hero {
        grid-template-columns:
            minmax(0, 1fr)
            58px !important;

        gap: 9px !important;

        height: 145px !important;
        min-height: 145px !important;
        max-height: 145px !important;

        padding: 14px 15px !important;

        border-radius: 15px !important;
    }


    body.pbx-my-game
    .pah-hero .pah-eyebrow {
        font-size: 0.49rem !important;
    }


    body.pbx-my-game .pah-hero h1 {
        font-size: 1.9rem !important;
    }


    body.pbx-my-game .pah-hero__week {
        min-height: 24px !important;
        max-height: 24px !important;

        margin-top: 3px !important;
        padding: 0 7px !important;
    }


    body.pbx-my-game
    .pah-hero__week strong {
        max-width: 205px !important;

        font-size: 0.53rem !important;
    }


    body.pbx-my-game .pah-progress {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;

        padding: 4px !important;
    }


    body.pbx-my-game
    .pah-progress strong {
        font-size: 0.82rem !important;
    }


    body.pbx-my-game
    .pah-progress span,
    body.pbx-my-game
    .pah-progress small {
        font-size: 0.34rem !important;
    }


    body.pbx-my-game
    .pah-next .pah-section-head {
        min-height: 38px !important;

        padding: 8px 10px !important;
    }


    body.pbx-my-game .pah-next__date {
        padding: 5px 10px 0 !important;

        font-size: 0.5rem !important;
    }


    body.pbx-my-game .pah-next__fixture {
        grid-template-columns:
            minmax(0, 1fr)
            78px
            minmax(0, 1fr) !important;

        padding: 8px 8px 10px !important;
    }


    body.pbx-my-game
    .pah-next .pah-logo.is-large {
        width: 38px !important;
        height: 38px !important;
    }


    body.pbx-my-game
    .pah-next-team > strong {
        font-size: 0.58rem !important;
    }


    body.pbx-my-game .pah-next__middle {
        min-height: 68px !important;
        padding: 6px 3px !important;
    }


    body.pbx-my-game
    .pah-next__middle strong {
        font-size: 0.98rem !important;
    }


    body.pbx-my-game .pah-next__footer {
        padding: 7px !important;
    }


    body.pbx-my-game
    .pah-next__footer a {
        min-height: 35px !important;

        font-size: 0.55rem !important;
    }


    body.pbx-my-game .pah-match {
        display: grid !important;
        grid-template-columns: 1fr !important;

        min-height: 128px !important;
        max-height: none !important;
    }


    body.pbx-my-game .pah-match__meta {
        min-height: 29px !important;

        padding: 5px 9px !important;
    }


    body.pbx-my-game
    .pah-match__meta time {
        font-size: 0.48rem !important;
    }


    body.pbx-my-game .pah-match__teams {
        min-height: 66px !important;

        grid-template-columns:
            minmax(0, 1fr)
            58px
            minmax(0, 1fr) !important;

        padding: 7px 9px !important;
    }


    body.pbx-my-game
    .pah-match .pah-logo {
        width: 27px !important;
        height: 27px !important;
        min-width: 27px !important;
    }


    body.pbx-my-game
    .pah-match__teams
    > div:not(.pah-match__prediction)
    > strong {
        font-size: 0.52rem !important;
        line-height: 1.12 !important;
    }


    body.pbx-my-game
    .pah-match__prediction {
        min-height: 48px !important;

        padding: 5px 2px !important;
    }


    body.pbx-my-game
    .pah-match__prediction span {
        font-size: 0.4rem !important;
    }


    body.pbx-my-game
    .pah-match__prediction strong {
        font-size: 0.75rem !important;
    }


    body.pbx-my-game .pah-match__footer {
        min-height: 33px !important;

        padding: 5px 9px !important;
    }


    body.pbx-my-game
    .pah-match__footer span {
        padding: 3px 5px !important;

        font-size: 0.4rem !important;
    }


    body.pbx-my-game
    .pah-match__footer > a {
        font-size: 0.51rem !important;
    }
}


/* === POOLBAAS MY GAME POLISH V3 END === */




/* === POOLBAAS PREDICT STRUCTURE V3 START === */


/* ========================================================
   PAGINA
   ======================================================== */

body.pbx-predict.pbx-predict-structured
.pbf5-page {
    display: grid !important;
    gap: 11px !important;

    padding:
        0 0
        calc(
            54px
            + env(safe-area-inset-bottom)
        ) !important;

    color: #fff !important;
}


body.pbx-predict.pbx-predict-structured
.pbf5-page * {
    box-shadow: none !important;
}


/* ========================================================
   COMPACTE HEADER
   ======================================================== */

body.pbx-predict
.pbx-predict-hero {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        150px !important;

    grid-auto-flow: row !important;
    align-items: center !important;
    gap: 5px 18px !important;

    min-height: 156px !important;
    height: 156px !important;
    max-height: 156px !important;

    margin: 0 !important;
    padding: 17px 19px !important;

    overflow: hidden !important;

    border:
        1px solid
        rgba(145, 105, 255, 0.32) !important;

    border-radius: 17px !important;

    background:
        radial-gradient(
            circle at 88% 35%,
            rgba(146, 83, 255, 0.32),
            transparent 13rem
        ),
        linear-gradient(
            132deg,
            #0d1846,
            #29125e
        ) !important;

    color: #fff !important;
}


body.pbx-predict
.pbx-predict-hero::before,
body.pbx-predict
.pbx-predict-hero::after {
    display: none !important;

    content: none !important;
}


body.pbx-predict
.pbx-predict-hero h1 {
    grid-column: 1 !important;

    margin: 2px 0 0 !important;

    color: #fff !important;

    font-size:
        clamp(
            2rem,
            5vw,
            2.9rem
        ) !important;

    line-height: 0.94 !important;
}


body.pbx-predict
.pbx-predict-hero p {
    grid-column: 1 !important;

    max-width: 500px !important;

    margin: 1px 0 0 !important;

    color: var(--pbx-muted) !important;

    font-size: 0.66rem !important;
    line-height: 1.35 !important;
}


body.pbx-predict
.pbx-predict-chip {
    display: inline-flex !important;
    align-items: center !important;

    width: fit-content !important;
    min-height: 23px !important;
    max-height: 23px !important;

    margin: 0 5px 0 0 !important;
    padding: 0 8px !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.13) !important;

    border-radius: 999px !important;

    background:
        rgba(255, 255, 255, 0.075) !important;

    color: var(--pbx-yellow) !important;

    font-size: 0.5rem !important;
    font-weight: 900 !important;
}


body.pbx-predict
.pbx-predict-progress {
    grid-column: 2 !important;
    grid-row: 1 / span 5 !important;

    display: grid !important;
    align-content: center !important;
    gap: 5px !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 12px !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 12px !important;

    background:
        rgba(255, 255, 255, 0.06) !important;

    color: #fff !important;
}


body.pbx-predict
.pbx-predict-progress strong {
    color: #fff !important;

    font-size: 1.15rem !important;
}


body.pbx-predict
.pbx-predict-progress :where(
    span,
    small
) {
    color: var(--pbx-muted) !important;

    font-size: 0.53rem !important;
}


body.pbx-predict
.pbx-predict-progress :where(
    progress,
    [role="progressbar"]
) {
    width: 100% !important;
    height: 5px !important;

    margin-top: 4px !important;

    border-radius: 999px !important;
}


/* ========================================================
   VOLGENDE DEADLINE
   ======================================================== */

body.pbx-predict
.pbx-predict-deadline {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        auto !important;

    align-items: center !important;
    gap: 4px 12px !important;

    min-height: 51px !important;

    margin: 0 !important;
    padding: 9px 13px !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 12px !important;

    background:
        rgba(255, 255, 255, 0.035) !important;

    color: #fff !important;
}


body.pbx-predict
.pbx-predict-deadline :where(
    span,
    small
) {
    color: var(--pbx-muted) !important;

    font-size: 0.52rem !important;
}


body.pbx-predict
.pbx-predict-deadline strong {
    color: #fff !important;

    font-size: 0.67rem !important;
}


/* ========================================================
   SECTIEKOP
   ======================================================== */

body.pbx-predict
.pbx-predict-group-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 12px !important;

    min-height: 0 !important;

    margin: 3px 0 0 !important;
    padding: 5px 2px 7px !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
}


body.pbx-predict
.pbx-predict-group-head h2 {
    margin: 0 !important;

    color: #fff !important;

    font-size: 1.04rem !important;
    line-height: 1.05 !important;
}


body.pbx-predict
.pbx-predict-group-head :where(
    span,
    small
) {
    color: var(--pbx-purple-light) !important;

    font-size: 0.53rem !important;
    font-weight: 900 !important;
}


/* ========================================================
   DOORLOPENDE WEDSTRIJDLIST
   ======================================================== */

body.pbx-predict
.pbx-predict-list {
    display: grid !important;
    gap: 0 !important;

    overflow: hidden !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 15px !important;

    background:
        rgba(255, 255, 255, 0.025) !important;
}


body.pbx-predict
.pbx-predict-card {
    position: relative !important;

    display: grid !important;
    gap: 7px !important;

    min-height: 0 !important;
    height: auto !important;

    margin: 0 !important;
    padding: 10px 12px !important;

    overflow: hidden !important;

    border: 0 !important;
    border-radius: 0 !important;

    background:
        rgba(12, 14, 45, 0.75) !important;

    color: #fff !important;
}


body.pbx-predict
.pbx-predict-card:nth-child(even) {
    background:
        rgba(23, 18, 60, 0.78) !important;
}


body.pbx-predict
.pbx-predict-card:not(:last-child) {
    border-bottom:
        1px solid
        var(--pbx-line) !important;
}


body.pbx-predict
.pbx-predict-card :where(
    h3,
    h4,
    strong,
    label,
    time
) {
    color: #fff !important;
}


body.pbx-predict
.pbx-predict-card :where(
    p,
    small,
    span
) {
    color: var(--pbx-muted);
}


/* ========================================================
   STATUS
   ======================================================== */

body.pbx-predict
.pbx-predict-saved {
    position: absolute !important;

    top: 9px !important;
    right: 10px !important;

    display: inline-flex !important;
    align-items: center !important;

    min-height: 23px !important;

    padding: 0 7px !important;

    border-radius: 999px !important;

    background:
        rgba(57, 213, 140, 0.12) !important;

    color: var(--pbx-green) !important;

    font-size: 0.47rem !important;
    font-weight: 900 !important;
}


/* ========================================================
   FIXTURE
   ======================================================== */

body.pbx-predict
.pbx-predict-fixture {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        114px
        minmax(0, 1fr) !important;

    align-items: center !important;
    gap: 10px !important;

    min-height: 76px !important;

    margin: 0 !important;
    padding: 5px 0 !important;
}


body.pbx-predict
.pbx-predict-team {
    display: grid !important;
    justify-items: center !important;
    align-content: center !important;
    gap: 5px !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: center !important;
}


body.pbx-predict
.pbx-predict-team :where(
    img,
    svg,
    [class*="logo"]
) {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;

    padding: 4px !important;

    border-radius: 10px !important;

    background: #fff !important;

    object-fit: contain !important;
}


body.pbx-predict
.pbx-predict-team :where(
    strong,
    b
) {
    display: -webkit-box !important;

    width: 100% !important;
    max-width: 125px !important;

    overflow: hidden !important;

    color: #fff !important;

    font-size: 0.61rem !important;
    line-height: 1.15 !important;

    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    line-clamp: 2 !important;
}


body.pbx-predict
.pbx-predict-team :where(
    span,
    small
) {
    color: var(--pbx-faint) !important;

    font-size: 0.46rem !important;
}


/* ========================================================
   SCORES
   ======================================================== */

body.pbx-predict
.pbx-predict-score {
    position: relative !important;

    display: grid !important;
    grid-template-columns:
        48px
        12px
        48px !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 17px 0 0 !important;
}


body.pbx-predict
.pbx-predict-score-label {
    position: absolute !important;

    top: 0 !important;
    left: 50% !important;

    width: 110px !important;

    color: var(--pbx-muted) !important;

    font-size: 0.45rem !important;
    font-weight: 850 !important;

    text-align: center !important;

    transform:
        translateX(-50%) !important;
}


body.pbx-predict
.pbx-predict-score input {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;

    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    border:
        1px solid
        rgba(162, 121, 255, 0.42) !important;

    border-radius: 10px !important;

    background:
        linear-gradient(
            145deg,
            #42257e,
            #24164e
        ) !important;

    color: #fff !important;

    font-size: 1.05rem !important;
    font-weight: 950 !important;

    text-align: center !important;
}


body.pbx-predict
.pbx-predict-score input:focus {
    border-color:
        var(--pbx-yellow) !important;

    outline: none !important;
}


/* ========================================================
   SNELKEUZES
   ======================================================== */

body.pbx-predict
.pbx-predict-presets {
    display: grid !important;
    grid-template-columns:
        repeat(4, minmax(0, 1fr)) !important;

    gap: 5px !important;

    margin: 0 !important;
    padding: 0 !important;
}


body.pbx-predict
.pbx-predict-preset {
    display: grid !important;
    place-items: center !important;

    min-height: 29px !important;

    margin: 0 !important;
    padding: 0 4px !important;

    border:
        1px solid
        var(--pbx-line) !important;

    border-radius: 8px !important;

    background:
        rgba(255, 255, 255, 0.04) !important;

    color: var(--pbx-muted) !important;

    font-size: 0.52rem !important;
    font-weight: 850 !important;
}


body.pbx-predict
.pbx-predict-preset:is(
    .is-active,
    [aria-pressed="true"]
) {
    border-color:
        rgba(166, 124, 255, 0.55) !important;

    background:
        rgba(126, 75, 226, 0.25) !important;

    color: #fff !important;
}


/* ========================================================
   FOOTER
   ======================================================== */

body.pbx-predict
.pbx-predict-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;

    min-height: 32px !important;

    margin: 0 !important;
    padding: 6px 0 0 !important;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.075) !important;
}


body.pbx-predict
.pbx-predict-card-footer :where(
    span,
    small,
    strong
) {
    font-size: 0.48rem !important;
}


body.pbx-predict
.pbx-predict-delete {
    color: var(--pbx-red) !important;

    font-size: 0.49rem !important;
    font-weight: 850 !important;
}


/* ========================================================
   MOBIEL
   ======================================================== */

@media (max-width: 720px) {
    body.pbx-predict
    .pbx-predict-hero {
        grid-template-columns:
            minmax(0, 1fr)
            104px !important;

        gap: 4px 10px !important;

        min-height: 137px !important;
        height: 137px !important;
        max-height: 137px !important;

        padding: 12px 13px !important;

        border-radius: 15px !important;
    }


    body.pbx-predict
    .pbx-predict-hero h1 {
        font-size: 1.8rem !important;
    }


    body.pbx-predict
    .pbx-predict-hero p {
        max-width: 270px !important;

        font-size: 0.54rem !important;
    }


    body.pbx-predict
    .pbx-predict-chip {
        min-height: 20px !important;
        max-height: 20px !important;

        padding: 0 6px !important;

        font-size: 0.42rem !important;
    }


    body.pbx-predict
    .pbx-predict-progress {
        padding: 8px !important;
    }


    body.pbx-predict
    .pbx-predict-progress strong {
        font-size: 0.87rem !important;
    }


    body.pbx-predict
    .pbx-predict-progress :where(
        span,
        small
    ) {
        font-size: 0.43rem !important;
    }


    body.pbx-predict
    .pbx-predict-deadline {
        min-height: 44px !important;

        padding: 7px 10px !important;
    }


    body.pbx-predict
    .pbx-predict-group-head {
        padding: 4px 2px 6px !important;
    }


    body.pbx-predict
    .pbx-predict-card {
        gap: 6px !important;

        padding: 9px 10px !important;
    }


    body.pbx-predict
    .pbx-predict-fixture {
        grid-template-columns:
            minmax(0, 1fr)
            101px
            minmax(0, 1fr) !important;

        gap: 6px !important;

        min-height: 69px !important;
    }


    body.pbx-predict
    .pbx-predict-team :where(
        img,
        svg,
        [class*="logo"]
    ) {
        width: 37px !important;
        height: 37px !important;
        max-width: 37px !important;
        max-height: 37px !important;
    }


    body.pbx-predict
    .pbx-predict-team :where(
        strong,
        b
    ) {
        max-width: 100px !important;

        font-size: 0.53rem !important;
    }


    body.pbx-predict
    .pbx-predict-score {
        grid-template-columns:
            43px
            10px
            43px !important;

        gap: 3px !important;

        padding-top: 15px !important;
    }


    body.pbx-predict
    .pbx-predict-score input {
        width: 43px !important;
        min-width: 43px !important;
        max-width: 43px !important;

        height: 43px !important;
        min-height: 43px !important;
        max-height: 43px !important;

        font-size: 0.95rem !important;
    }


    body.pbx-predict
    .pbx-predict-score-label {
        width: 100px !important;

        font-size: 0.4rem !important;
    }


    body.pbx-predict
    .pbx-predict-preset {
        min-height: 27px !important;

        font-size: 0.47rem !important;
    }


    body.pbx-predict
    .pbx-predict-card-footer {
        min-height: 29px !important;

        padding-top: 5px !important;
    }
}


/* === POOLBAAS PREDICT STRUCTURE V3 END === */
