/* PRONO_UNIFIED_PREDICTIONS_TABLE_V1 */

.user-predictions-match-head {
    box-sizing: border-box;
    width: 100%;

    display: grid;
    grid-template-columns:
        130px
        minmax(280px, 1fr)
        125px
        125px
        105px;

    gap: 14px;
    align-items: center;

    margin-bottom: 8px;
    padding: 0 16px;

    color: #5f675f;
    font-size: .76rem;
    font-weight: 850;
}

.prono-unified-match-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.prono-unified-match-list
.user-predictions-match {
    box-sizing: border-box;
    width: 100%;

    display: grid;
    grid-template-columns:
        130px
        minmax(280px, 1fr)
        125px
        125px
        105px;

    gap: 14px;
    align-items: center;

    min-height: 68px;
    padding: 12px 16px;

    border: 1px solid #d8c9b1;
    border-radius: 13px;

    background: transparent;
    color: #111;
}

.prono-unified-match-list
.user-predictions-match.is-correct {
    background: #b9dfc7;
    border-color: #8fc7a4;
}

.prono-unified-match-list
.user-predictions-match.is-wrong {
    background: #fffff0;
    border-color: #ddd6ca;
}

/* PRONO_PENDING_SELECTED_BEIGE_V1 */
.prono-unified-match-list
.user-predictions-match.is-pending {
    background: #dcc7a1;
    border-color: #c8ae7e;
}
/* PRONO_PENDING_SELECTED_BEIGE_V1_END */

.prono-unified-match-list
.user-predictions-match > time {
    color: #505a52;
    font-size: .82rem;
    font-weight: 750;
}

.prono-unified-match-list
.user-predictions-match > strong {
    font-size: .94rem;
    font-weight: 850;
}

.user-predictions-match__detail {
    min-width: 0;
}

.user-predictions-match__detail > span {
    display: none;
}

.user-predictions-match__detail b {
    font-size: .92rem;
    font-weight: 850;
}

.prono-unified-score-edit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.prono-unified-score-edit label {
    margin: 0;
}

.prono-unified-score-edit input {
    box-sizing: border-box;

    width: 48px;
    height: 38px;
    padding: 4px;

    border: 1px solid #bfae94;
    border-radius: 8px;

    background: #fff;
    color: #111;

    font: inherit;
    font-size: .95rem;
    font-weight: 850;

    text-align: center;
}

.prono-unified-score-edit b {
    font-size: 1rem;
}

.user-predictions-match__points {
    white-space: nowrap;
}

/* MOBILE */

@media (max-width: 760px) {
    .user-predictions-match-head {
        display: none;
    }

    .prono-unified-match-list
    .user-predictions-match {
        grid-template-columns: 1fr 1fr;
        gap: 9px 14px;

        padding: 14px;
    }

    .prono-unified-match-list
    .user-predictions-match > time {
        grid-column: 1 / -1;
    }

    .prono-unified-match-list
    .user-predictions-match > strong {
        grid-column: 1 / -1;
        padding-bottom: 7px;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .user-predictions-match__detail {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .user-predictions-match__detail > span {
        display: block;

        color: #697168;
        font-size: .69rem;
        font-weight: 750;
    }

    .prono-unified-score-edit {
        justify-content: flex-start;
    }

    .prono-unified-score-edit input {
        width: 46px;
        height: 37px;
    }
}

/* PRONO_UNIFIED_PREDICTIONS_TABLE_V1_END */

/* PRONO_UNIFIED_CHALLENGES_DESIGN_V1 */

.prono-unified-challenges {
    margin-top: 24px;
}

.prono-unified-challenges > h2 {
    margin: 0 0 14px;
    text-align: center;
}

.prono-unified-challenges__locked {
    margin: 0 0 12px;
    color: #b51f27;
    font-weight: 800;
    text-align: center;
}

.prono-unified-challenge-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.prono-unified-challenge {
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 8px;

    min-width: 0;
    min-height: 125px;
    padding: 14px;

    border: 1px solid #d8c9b1;
    border-radius: 13px;

    background: transparent;
    color: #111;
}

.prono-unified-challenge.is-correct {
    background: #b9dfc7;
    border-color: #8fc7a4;
}

.prono-unified-challenge.is-wrong {
    background: #fffff0;
    border-color: #ddd6ca;
}

/* PRONO_PENDING_CHALLENGE_SELECTED_BEIGE_V1 */
.prono-unified-challenge.is-pending {
    background: #dcc7a1;
    border-color: #c8ae7e;
}
/* PRONO_PENDING_CHALLENGE_SELECTED_BEIGE_V1_END */

.prono-unified-challenge > span {
    font-size: .78rem;
    font-weight: 750;
}

.prono-unified-challenge > strong {
    font-size: .92rem;
    font-weight: 850;
}

.prono-unified-challenge > div {
    margin-top: auto;
    font-size: .82rem;
}

.prono-unified-challenge b {
    color: #111;
}

@media (max-width: 760px) {
    .prono-unified-challenge-list {
        grid-template-columns: 1fr;
    }

    .prono-unified-challenge {
        min-height: 0;
    }
}

/* PRONO_UNIFIED_CHALLENGES_DESIGN_V1_END */

/* PRONO_OTHER_USER_CLEAR_NAV_CSS_V1 */

.prono-other-user-banner {
    width: min(100% - 32px, 900px);
    margin: 20px auto 24px;
    padding: 17px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    border: 2px solid #c89b47;
    border-radius: 15px;

    background: #f2ddb2;

    box-shadow:
        0 10px 28px rgba(73, 52, 23, 0.14);
}

.prono-other-user-banner__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prono-other-user-banner__text span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.72;
}

.prono-other-user-banner__text strong {
    font-size: 21px;
    line-height: 1.25;
    color: #17120b;
}

.prono-other-user-banner__back {
    flex: 0 0 auto;

    padding: 10px 16px;

    border: 1px solid #17613f;
    border-radius: 999px;

    background: #17613f;

    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    box-shadow:
        0 4px 12px rgba(23, 97, 63, 0.16);
}

.prono-other-user-banner__back:hover,
.prono-other-user-banner__back:focus-visible {
    background: #0f5033;
    text-decoration: none;
}

@media (max-width: 720px) {
    .prono-other-user-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .prono-other-user-banner__back {
        text-align: center;
    }
}

/* PRONO_OTHER_USER_CLEAR_NAV_CSS_V1_END */

/* PRONO_OTHER_USER_EMPTY_V1 */

.prono-other-user-empty {
    width: min(100% - 32px, 900px);
    margin: 0 auto 28px;
    padding: 24px 20px;

    border: 1px solid rgba(86, 63, 27, 0.18);
    border-radius: 14px;

    background: rgba(255, 248, 232, 0.72);

    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

/* PRONO_OTHER_USER_EMPTY_V1_END */

/* PRONO_CHALLENGE_ERROR_7_52_V1 */
.alert.prono-challenge-error {
    color: #681b16;
    background: #fffdfb;
    border-color: #e5b4ae;
    border-left: 4px solid #b83a30;
    font-weight: 700;
}
/* PRONO_CHALLENGE_ERROR_7_52_V1_END */
