
main.tournament-details .tournament-banner > img {
    max-width: 80%;
    object-fit: contain;
}

main.tournament-details .group-stages {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-columns: repeat(2, minmax(auto, 50%));
    width: 100%;
    gap: 1rem;
}

main.tournament-details .tournament-banner .info {
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 50%) 0%, rgba(255 255 255 / 0%) 100%);
}

main.tournament-details .esport-table th:first-child {
    width: 15%;
}

.tournament-banner {
    position: relative;
    height: 400px;
    background-image: url(/images/backgrounds/tournament_banner_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-banner > img {
    height: 80%;
    object-fit: contain;
}


.tournament-banner .info {
    position: absolute;
    left: 0px;
    bottom: 0px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tournament-details span.tournament-status {
    border-radius: 25px;
    padding: 0 25px;
    background-color: var(--status-default-gray);
    color: white;
}

.tournament-details span.tournament-status.ongoing {
    background-color: var(--status-ongoing-red);
}

.tournament-details span.tournament-status.upcoming {
    background-color: var(--status-scheduled-blue);
}

.tournament-details .bw-match-list .labelled-logo >* {
    display: none;
}

.ongoing span {
    color: white;
    width: 100%;
    display: block;
    text-align: center;
}

.tournament-details .player-stats-portrait {
    width: 35px;
    height: 35px;
    background-color: var(--bg-dark-purple);
    border-radius: 5px;
    justify-content: center;
    display: flex;
    align-items: end;
}

.tournament-details .player-stats-portrait img {
    max-height: 95%;
    object-fit: contain;
}

.tournament-details .stats-table-portrait  {
    display: flex;
    justify-content: center;
    width: 25px;
    height: 30px;
    border-radius: 5px;
}

.tournament-details .hero-stats-portrait {
    max-width: 100px;
    min-width: 40px;
    width: 65px;
}

.tournament-details .hero-stats-portrait img {
    object-fit: cover;
    border-radius: 5px;
}

body.hok .tournament-details .hero-stats-portrait {
    width: 3px;
}

.tournament-details .stats-table-portrait img {
    object-fit: contain;
}

 .tournament-details .bootstrap-table .fixed-table-container .fixed-table-body {
     overflow: inherit;
 }

 .tournament-details .bootstrap-table .fixed-table-container .fixed-table-body th h3 {
    white-space: normal;
} 
