@charset "UTF-8";

/* live-table --------------- */
.live-table {
    color: #555e61;
    font-size: 13px;
}

.live-table .soccer-table {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 0 4px;
}

.live-table .soccer-table:first-of-type {
    border-radius: 0 0 8px 8px;
    padding: 0 0 4px;
}

.live-table .soccer-table .header-league-wraper {
    padding-block-start: 1px;
}

.live-table .soccer-table .header-league {
    background: #eee;
    align-items: center;
    border-radius: 4px;
    min-height: 32px;
    display: flex;
    justify-content: flex-start;
    padding-inline-start: 0;
}

.live-table .soccer-table .header-league-body {
    align-items: center;
    display: flex;
    overflow: hidden;
    padding-inline-start: 5px;
}

.live-table .soccer-table .header-league-title {
    color: #555e61;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.live-table .event-match {
    border-bottom: 1px solid #eee;
    display: grid;
    position: relative;
    grid-template:
        "stageOrTime homeParticipant status" minmax(23px,auto)
        "stageOrTime awayParticipant status" minmax(23px,auto)
        "homeScore awayScore status" minmax(30px,auto) / 64px 1fr 1fr;
}

.live-table .event-match:hover {
    background-color: #c8cdcd33;
}

.live-table .event-match a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.live-table .event-match .event-date {
    align-items: center;
    display: flex;
    line-height: 15px;
    color: #555e61;
    margin-left: 0;
    text-align: center;
    word-break: break-word;
    justify-content: center;
    grid-area: stageOrTime;
}

.live-table .event-match .event-home,
.live-table .event-match .event-away {
    color: #001e28;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.live-table .event-match .event-home {
    text-align: left;
    grid-area: homeParticipant;
    margin-left: 8px;
}

.live-table .event-match .event-away {
    text-align: left;
    grid-area: awayParticipant;
    margin-left: 8px;
}

.live-table .event-match .event-home img,
.live-table .event-match .event-away img {
    width: 16px;
    height: 16px;
    justify-self: end;
    margin-right: 8px;
}

.live-table .event-match .event-score-home,
.live-table .event-match .event-score-away {
    color: #001e28;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-table .event-match .event-score-home {
    grid-area: homeScore;
    border-top: 1px solid #eee;
    padding-top: 4px;
}

.live-table .event-match .event-score-away {
    grid-area: awayScore;
    border-top: 1px solid #eee;
    padding-top: 4px;
}

.live-table .event-match .event-status {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: status;
    position: relative;
}

.live-table .event-match .event-status::before {
    background: #eee;
    content: "";
    height: calc(100% - 12px);
    margin: auto;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
}

@media screen and (max-width: 640px) {
    .live-table {
        font-size: 11px;
    }
    .live-table .soccer-table .header-league-title {
        font-size: 12px;
    }
    .live-table .event-match {
        grid-template:
            "stageOrTime homeParticipant status" minmax(23px,auto)
            "stageOrTime awayParticipant status" minmax(23px,auto)
            "homeScore awayScore status" minmax(30px,auto) / 48px 1fr 100px;
    }
    .live-table .soccer-table {
        padding: 10px 0 4px;
    }
    .live-table .soccer-table:first-of-type {
        padding: 0 0 4px;
    }
    .live-table .soccer-table .header-league {
        border-radius: 0;
    }
}

/* h2h-table --------------- */
.h2h-table {
    color: #555e61;
    font-size: 13px;
    margin-bottom: 10px;
}

.h2h-table .soccer-table {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 0 4px;
}

.h2h-table .soccer-table:first-of-type {
    border-radius: 0 0 8px 8px;
    padding: 0 0 4px;
}

.h2h-table .soccer-table .header-league-wraper {
    padding-block-start: 1px;
}

.h2h-table .soccer-table .header-league {
    background: #eee;
    align-items: center;
    border-radius: 4px;
    min-height: 32px;
    display: flex;
    justify-content: flex-start;
    padding-inline-start: 0;
}

.h2h-table .soccer-table .header-league-body {
    align-items: center;
    display: flex;
    overflow: hidden;
    padding-inline-start: 5px;
}

.h2h-table .soccer-table .header-league-title {
    color: #555e61;
    font-weight: 700;
}

.h2h-table .event-match {
    border-bottom: 1px solid #eee;
    display: grid;
    position: relative;
    grid-template:
        "stageOrTime league homeParticipant homeScore status" minmax(23px,auto)
        "stageOrTime league awayParticipant awayScore status" minmax(23px,auto) / 85px 0.5fr 1fr 40px 1fr;
}

.h2h-table .event-match:hover {
    background-color: #c8cdcd33;
}

.h2h-table .event-match a {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.h2h-table .event-match .event-date {
    align-items: center;
    display: flex;
    line-height: 15px;
    color: #555e61;
    margin-left: 0;
    text-align: center;
    word-break: break-word;
    justify-content: center;
    grid-area: stageOrTime;
}

.h2h-table .event-match .event-league {
    color: #001e28;
    grid-area: league;
    align-items: center;
    display: flex;
}

.h2h-table .event-match .event-home,
.h2h-table .event-match .event-away {
    color: #001e28;
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.h2h-table .event-match .event-home.winner,
.h2h-table .event-match .event-away.winner {
    font-weight: 700;
}

.h2h-table .event-match .event-home {
    text-align: left;
    grid-area: homeParticipant;
    margin-left: 8px;
}

.h2h-table .event-match .event-away {
    text-align: left;
    grid-area: awayParticipant;
    margin-left: 8px;
}

.h2h-table .event-match .event-home .badge-txt,
.h2h-table .event-match .event-away .badge-txt {
    border-radius: 4px;
    line-height: 16px;
    max-width: 100%;
    overflow: hidden;
    padding: 1px 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h2h-table .event-match .event-home .badge-txt.highlighted,
.h2h-table .event-match .event-away .badge-txt.highlighted {
    background: #eef7ff;
}

.h2h-table .event-match.table-3 .event-home .badge-txt.highlighted,
.h2h-table .event-match.table-3 .event-away .badge-txt.highlighted {
    background: transparent;
}

.h2h-table .event-match .event-score-home,
.h2h-table .event-match .event-score-away {
    color: #001e28;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h2h-table .event-match .event-score-home {
    grid-area: homeScore;
}

.h2h-table .event-match .event-score-away {
    grid-area: awayScore;
}

.h2h-table .event-match .event-status {
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-area: status;
    position: relative;
}

.h2h-table .event-match .event-status .badge-form {
    align-items: center;
    background-color: #c8cdcd;
    border-radius: 4px;
    color: #fff;
    display: flex;
    height: 20px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 20px;
}

.h2h-table .event-match.table-3 .event-status .badge-form {
    display: none;
}

.h2h-table .event-match.match-result-win .event-status .badge-form {
    background-color: #00a83f;
}

.h2h-table .event-match.match-result-win .event-status .badge-form > span::before {
    content: "W";
}

.h2h-table .event-match.match-result-draw .event-status .badge-form {
    background-color: #f3a000;
}

.h2h-table .event-match.match-result-draw .event-status .badge-form > span::before {
    content: "D";
}

.h2h-table .event-match.match-result-lose .event-status .badge-form {
    background-color: #dc0000;
}

.h2h-table .event-match.match-result-lose .event-status .badge-form > span::before {
    content: "L";
}

@media screen and (max-width: 640px) {
    .h2h-table {
        font-size: 11px;
    }
    .h2h-table .soccer-table .header-league-title {
        font-size: 12px;
    }
    .h2h-table .event-match {
        grid-template:
            "stageOrTime league homeParticipant homeScore status" minmax(23px,auto)
            "stageOrTime league awayParticipant awayScore status" minmax(23px,auto) / 64px 90px 1fr 40px 40px;
    }
    .h2h-table .soccer-table {
        padding: 10px 0 4px;
    }
    .h2h-table .soccer-table:first-of-type {
        padding: 0 0 4px;
    }
    .h2h-table .soccer-table .header-league {
        border-radius: 0;
    }
}

/* analyst-container --------------- */
.analyst-container .duel-participant {
    text-align: center;
    max-width: 640px;
    display: grid;
    grid-template:
        "home time away" 22px
        "home score away" auto / 2fr 1fr 2fr;
    justify-content: center;
    margin: 24px auto;
}

.analyst-container .duel-participant .start-time {
    color: #555e61;
    font-size: 13px;
    grid-area: time;
    text-align: center;
}

.analyst-container .duel-participant .team-home {
    grid-area: home;
}

.analyst-container .duel-participant .team-away {
    grid-area: away;
}

.analyst-container .duel-participant .team-home .img,
.analyst-container .duel-participant .team-away .img {
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.analyst-container .duel-participant .team-home .img img,
.analyst-container .duel-participant .team-away .img img {
    width: 58px;
    height: 58px;
}

.analyst-container .duel-participant .team-home .team,
.analyst-container .duel-participant .team-away .team {
    color: #001e28;
    width: 100%;
    font-size: 16px;
    padding-top: 5px;
    text-align: center;
}

.analyst-container .duel-participant .score {
    font-size: 46px;
    grid-area: score;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.analyst-container .duel-participant .score .result {
    width: 100%;
}

.analyst-container .duel-participant .score .status {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding-top: 8px;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 640px) {
    .analyst-container .duel-participant {
        grid-template:
            "time time time" 22px
            ". . ." 5px
            "home score away" auto / 2fr 1fr 2fr;
    }
    .analyst-container .duel-participant .team-home .team,
    .analyst-container .duel-participant .team-away .team {
        font-size: 12px;
    }
    .analyst-container .duel-participant .team-home .img img,
    .analyst-container .duel-participant .team-away .img img {
        width: 34px;
        height: 34px;
    }
    .analyst-container .duel-participant .score {
        font-size: 30px;
    }
    .analyst-container .duel-participant .score .status {
        font-size: 11px;
    }
}

/* formation-container --------------- */
.formation-header-bar {
    max-width: 640px;
    height: 28px;
    font-size: 11px;
    padding: 0 12px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    border-radius: 4px;
    color: #555e61;
    display: flex;
}

.formation-container {
    background-color: #eee;
    max-width: 640px;
    border-radius: 4px;
    margin: 8px auto 0;
    padding: 16px;
}

.formation-field {
    display: flex;
    height: 53vw;
    margin: 0 auto;
    max-height: 365px;
    max-width: 600px;
    position: relative;
    width: 100%;
    background-size: 100% 100% !important;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.formation-field::before {
    content: "";
    background:transparent url(/img/common/std.svg#soccerFieldView) no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.24;
}

.formation-field .team-formation {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    padding-top: 20px;
}

.formation-field .team-formation.home {
    left: 0;
    flex-direction: row;
}

.formation-field .team-formation.away {
    right: 0;
    flex-direction: row-reverse;
}

.formation-field .formation-column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    flex: 1;
}

.formation-field .formation-column .player-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.formation-field .formation-column .player-img-wrapper {
    position: relative;
    margin-bottom: -8px;
    z-index: 2;
}

.formation-field .formation-column .player-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
    border: 1px solid #fff;
}

.formation-field .formation-column .player-rating {
    position: absolute;
    top: -2px;
    left: -8px;
    background: #76b900;
    color: #fff;
    font-size: 9px;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.formation-field .formation-column .player-rating.warn {
    background: #f0ad4e;
}

.formation-field .formation-column .player-rating.bad {
    background: #d9534f;
}

.formation-field .formation-column .player-info {
    background: #fff;
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 9px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.formation-field .formation-column .player-number {
    color: #888;
    font-size: 9px;
    font-weight: bold;
}

.formation-field .formation-column .player-name {
    color: #333;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .formation-field {
        flex-direction: column;
        height: 592px;
        justify-content: center;
        max-height: none;
        max-width: none;
        width: 340px;
    }
    .formation-field::before {
        width: 592px;
        height: 340px;
        top: 126px;
        left: -126px;
        transform: rotate(90deg);
    }
    .formation-field .formation-column {
        flex-direction: row;
    }
    .formation-field .team-formation.home {
        width: 100%;
        height: 50%;
        flex-direction: column;
        margin: 0 auto;
        padding-top: 0;
    }
    .formation-field .team-formation.away {
        width: 100%;
        height: 50%;
        flex-direction: column-reverse;
        margin: 0 auto;
        padding-top: 0;
        top: auto;
    }
}

/* match-stats-container --------------- */
.match-stats-container {
    max-width: 640px;
    margin: 24px auto;
}

.match-stats-container .stats-section {
    font-size: 13px;
    margin-bottom: 20px;
}

.match-stats-container .stats-section:last-child {
    margin-bottom: 0;
}

.match-stats-container .stats-section-header {
    background: #eee;
    padding: 6px 10px;
    text-align: center;
    font-weight: 700;
    color: #555e61;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
}

.match-stats-container .stat-row {
    margin: 16px 12px;
}

.match-stats-container .stat-category {
    font-weight: 700;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 4px;
}

.match-stats-container .stat-value {
    color: #001e28;
    flex-basis: 90px;
}

.match-stats-container .stat-value.stat-home {
    padding-right: 5px;
}

.match-stats-container .stat-label {
    align-items: center;
    align-self: end;
    color: #001e28;
    display: flex;
    flex: 1;
    gap: 4px;
    justify-content: center;
    text-align: center;
}

.match-stats-container .stat-value.stat-away {
    padding-left: 5px;
    text-align: end;
}

.match-stats-container .stat-bars {
    display: flex;
}

.match-stats-container .stat-bar {
    background-color: #eee;
    border-radius: 2px;
    display: flex;
    height: 9px;
    margin: 0 1px;
    width: 100%;
}

.match-stats-container .stat-bar.stat-home {
    justify-content: flex-end;
}

.match-stats-container .stat-bar .stat-chart {
    border-radius: 2px;
}

.match-stats-container .stat-bar.stat-home .stat-chart {
    background-color: #bf953f;
}

.match-stats-container .stat-bar.stat-away .stat-chart {
    background-color: #001e28;
}

@media screen and (max-width: 640px) {
    .match-stats-container .stats-section {
        font-size: 12px;
    }
}

/* starting-lineups-container --------------- */
.starting-lineups-container {
    margin: 24px auto;
    overflow: hidden;
}

.starting-lineups-container .starting-lineups-header {
    background: #eee;
    padding: 6px 10px;
    text-align: center;
    font-weight: 700;
    color: #555e61;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-top: 20px;
}

.starting-lineups-container .starting-lineups-header:first-child {
    margin-top: 0;
}

.starting-lineups-container .lineups-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    transition: background-color 0.2s;
    gap: 12px;
    border-radius: 4px;
}

.starting-lineups-container .lineups-list-row:nth-child(odd) {
    background-color: #f7f8f8;
}

.starting-lineups-container .lineups-list-row:last-child {
    border-bottom: none;
}

.starting-lineups-container .lineup-player {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
    font-size: 13px;
    color: #001e28;
    font-weight: 600;
}

.starting-lineups-container .lineup-player.home {
    justify-content: flex-start;
}

.starting-lineups-container .lineup-player.away {
    justify-content: flex-end;
    /* flex-direction: row-reverse; */
}

.starting-lineups-container .player-num-box {
    font-weight: 500;
    color: #001e28;
    min-width: 24px;
    text-align: center;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.starting-lineups-container .player-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.starting-lineups-container .player-name-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.starting-lineups-container .player-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
}

.starting-lineups-container .player-icons.away-icons {
    margin-left: 0;
    margin-right: 6px;
}

.starting-lineups-container .icon-sub {
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.starting-lineups-container .icon-card-y {
    width: 10px;
    height: 12px;
    background: #ffcd00;
    border: 1px solid #999;
    display: inline-block;
}

.starting-lineups-container .icon-card-r {
    width: 10px;
    height: 12px;
    background: #ff0046;
    border: 1px solid #999;
    display: inline-block;
}

.starting-lineups-container .icon-goal {
    width: 14px;
    height: 14px;
    background: #94a3b8;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 700;
}

@media screen and (max-width: 640px) {
    .starting-lineups-container .player-name-text {
        max-width: 100px;
        font-size: 12px;
    }
    .starting-lineups-container .lineups-list-row {
        padding: 8px 12px;
        gap: 8px;
    }
    .starting-lineups-container .player-num-box {
        min-width: 20px;
        font-size: 11px;
        padding: 2px 4px;
    }
    .starting-lineups-container .player-flag {
        width: 18px;
        height: 13px;
    }
}

/* standings-container --------------- */
.standings-container {
    color: #555e61;
    font-size: 13px;
    margin-bottom: 10px;
}

.standings-container .standings-header {
    background: #eee;
    padding: 6px 10px;
    font-weight: 700;
    color: #555e61;
    font-size: 11px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.standings-container .standings-body {
    overflow-x: auto;
}

.standings-container .standings-table {
    display: grid;
}

.standings-container .standings-table .table-header {
    display: flex;
    height: 29px;
    user-select: none;
}

.standings-container .standings-table .table-header .header-cell {
    align-items: center;
    background-color: #eee;
    color: #00141e;
    display: flex;
    font-size: 11px;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 32px;
}

.standings-container .standings-table .table-header .header-cell:first-child {
    border-radius: 0 0 0 4px;
}

.standings-container .standings-table .table-header .header-cell:last-child {
    border-radius: 0 0 4px 0;
}

.standings-container .standings-table .table-header .header-cell.rank {
    background-color: #eee;
    left: 0;
    position: sticky;
    top: 0;
    width: 32px;
    z-index: 1;
}

.standings-container .standings-table .table-header .header-cell.participant {
    align-self: center;
    display: block;
    flex: 1 0 100px;
    justify-content: flex-start;
    left: 32px;
    line-height: 29px;
    overflow: hidden;
    padding: 0 10px;
    position: sticky;
    text-overflow: ellipsis;
    top: 0;
    white-space: nowrap;
    width: 100px;
    z-index: 1;
}

.standings-container .standings-table .table-header .header-cell.goal,
.standings-container .standings-table .table-header .header-cell.goal-diff {
    width: 48px;
}

.standings-container .standings-table .table-header .header-cell.point {
    color: #00141e;
    font-weight: 700;
}

.standings-container .standings-table .table-header .header-cell.form {
    width: 160px;
}

.standings-container .standings-table .table-body {
    display: grid;
    grid-auto-rows: 36px;
}

.standings-container .standings-table .table-body .body-row {
    border-bottom: 1px solid #eee;
    display: flex;
}

.standings-container .standings-table .table-body .body-cell {
    align-items: center;
    align-self: center;
    background-color: #fff;
    color: #001e28;
    display: flex;
    height: 35px;
    width: 32px;
}

.standings-container .standings-table .table-body .body-cell.rank {
    justify-content: center;
    left: 0;
}

.standings-container .standings-table .table-body .body-cell.rank,
.standings-container .standings-table .table-body .body-cell.participant {
    background-color: #fff;
    position: sticky;
    position: -webkit-sticky;
    z-index: 1;
}

.standings-container .standings-table .table-body .body-cell.participant {
    flex-grow: 1;
    flex-shrink: 0;
    left: 32px;
    padding: 0 10px;
    width: 100px;
    display: flex;
    align-items: center;
}

.standings-container .standings-table .table-body .body-cell.participant .img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    display: flex;
}

.standings-container .standings-table .table-body .body-cell.participant .name {
    color: #001e28;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.standings-container .standings-table .table-body .body-cell.mp,
.standings-container .standings-table .table-body .body-cell.win,
.standings-container .standings-table .table-body .body-cell.draw,
.standings-container .standings-table .table-body .body-cell.lose,
.standings-container .standings-table .table-body .body-cell.goal,
.standings-container .standings-table .table-body .body-cell.goal-diff,
.standings-container .standings-table .table-body .body-cell.point {
    justify-content: center;
}

.standings-container .standings-table .table-body .body-cell.goal,
.standings-container .standings-table .table-body .body-cell.goal-diff {
    width: 48px;
}

.standings-container .standings-table .table-body .body-cell.point {
    color: #00141e;
    font-weight: 700;
}

.standings-container .standings-table .table-body .body-cell.form {
    align-items: center;
    column-gap: 4px;
    display: flex;
    justify-content: flex-start;
    line-height: 14px;
    padding: 0 10px;
    width: 160px;
}

.standings-container .standings-table .table-body .body-cell.form .badge-form {
    align-items: center;
    background-color: #c8cdcd;
    border-radius: 4px;
    color: #fff;
    display: flex;
    height: 20px;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 20px;
}

.standings-container .standings-table .table-body .body-cell.form .badge-form > span {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
}

/* stat-info-icon --------------- */
.stat-info-icon {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.stat-info-icon::before {
    content: attr(title);
    max-width: 200px;
    min-width: 200px;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #001e28;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
}

.stat-info-icon:hover::before {
    opacity: 1;
}

/* icon --------------- */
.icon-event {
    position: absolute;
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
}

.icon-sub {
    bottom: 0;
    left: -5px;
    background-image: url('/img/icon/sub.png');
    background-color: #fff;
    border-radius: 50%;
}

.icon-goal {
    top: 0;
    right: -5px;
    background-image: url('/img/icon/goal.png');
}

.icon-card-y {
    bottom: 0;
    right: -5px;
    width: 8px;
    height: 10px;
    background: #ff0;
    border: 1px solid #999;
}

.icon-card-r {
    bottom: 0;
    right: -5px;
    width: 8px;
    height: 10px;
    background: #f00;
    border: 1px solid #999;
}

/* ai-response --------------- */
.ai-response {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8ecef;
}

.ai-response::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 50%, #b38728 100%);
    z-index: 1;
}

.ai-response > h1:first-child,
.ai-response > h2:first-child,
.ai-response > h3:first-child {
    color: #282828;
    margin: -20px -20px 20px -20px;
    width: calc(100% + 40px);
    font-size: 18px;
    font-weight: 700;
    border-bottom: 2px solid #c8a252;
    position: relative;
    z-index: 0;
}

.ai-response h1,
.ai-response h2,
.ai-response h3,
.ai-response h4,
.ai-response h5,
.ai-response h6 {
    color: #1e293b;
    font-weight: 700;
}

.ai-response h1 {
    font-size: 24px;
    color: #b38728;
}

.ai-response h2 {
    font-size: 20px;
    color: #c8a252;
}

.ai-response h3 {
    font-size: 18px;
    color: #334155;
}

.ai-response h4 {
    font-size: 16px;
}

.ai-response p {
    color: #334155;
    text-align: justify;
}

.ai-response strong,
.ai-response b {
    color: #1e293b;
    font-weight: 700;
}

.ai-response em,
.ai-response i {
    font-style: italic;
    color: #475569;
}

.ai-response ul,
.ai-response ol {
    color: #334155;
    margin-bottom: 16px;
    padding-left: 24px;
}

.ai-response li {
    margin-bottom: 8px;
}

.ai-response ul li::marker {
    color: #c8a252;
}

.ai-response a {
    color: #c8a252;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.ai-response a:hover {
    color: #b38728;
    border-bottom-color: #b38728;
}

.ai-response blockquote {
    border: 1px solid #eee;
    border-left: 4px solid #c8a252;
    background: #eee;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-style: italic;
    color: #1e293b;
}

.ai-response code {
    background: #f1f5f9;
    color: #b38728;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.ai-response pre {
    background: #1e293b;
    color: #f1f5f9;
    padding: 16px;
    border-radius: 6px;
    overflow-x: auto;
    margin: 20px 0;
}

.ai-response pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.ai-response table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.ai-response table th {
    background: linear-gradient(180deg, var(--silver-dark) 0%, #ffffff 25%, var(--silver-light) 50%, var(--silver-dark) 100%);
    color: #282828;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #c8a252;
}

.ai-response table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.ai-response table tr:hover {
    background: #f7fafc;
}

.ai-response img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ai-response hr {
    border: none;
    border-top: 2px solid #c8a252;
    margin: 30px 0;
    background: linear-gradient(90deg, transparent, #c8a252, transparent);
}

.ai-response mark {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #1e293b;
    padding: 2px 4px;
    border-radius: 3px;
}

@media (max-width: 767px) {
    .ai-response {
        margin-bottom: 16px;
        padding: 10px;
        border-radius: 0;
    }
    .ai-response > h1:first-child,
    .ai-response > h2:first-child,
    .ai-response > h3:first-child {
        font-size: 16px;
    }
    .ai-response h1 {
        font-size: 20px;
    }
    .ai-response h2 {
        font-size: 18px;
    }
    .ai-response h3 {
        font-size: 16px;
    }
    .ai-response p {
        font-size: 14px;
        text-align: left;
    }
    .ai-response ul,
    .ai-response ol {
        font-size: 14px;
        padding-left: 20px;
    }
}