.troggle-btn-area{
    display: flex;
    box-sizing: border-box;
    padding-left: 10px;
    margin: 10px 0;
}

.troggle-btn-area .troggle-btn{
    margin: 5px 5px;
    box-sizing: border-box;
    padding: 7px;
    width: 110px;
    cursor: pointer;
    border-radius: 8px;
    color:#fff;
    font-size: 14px;
    background-color: #565252;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: bold;
}

.troggle-btn-area .active{
    background-color: var(--match-header-active);
}

.stream-game-item{
    display: flex;
    justify-content: space-around;
    width: 95%;
    height: 70px;
    margin: 0 auto;
    border-top: 1px dashed #c6c6c6;
    border-bottom: 1px dashed #c6c6c6;
}

.stream-game-item .time{
    display: flex;
    align-items: center;
    width: 30%;
}

.stream-game-item .league{
    display: flex;
    align-items: center;
    width: 40%;
}

.behind-part{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.team-info-content{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
}

.team-info-content .team {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.team-info-content .team .home{
    display: inline-block;
    width: 135px;
    text-align: right;
    margin: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-info-content .team .away{
    display: inline-block;
    width: 135px;
    text-align: left;
    margin: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-info-content .team img{
    width: 30px;
    height: 30px;
}

.stream-play{
    flex:1;
    display: flex;
}

.stream-play-link{
    display: inline-block;
    color: var(--match-signal-end-color);
    background-color: var(--match-signal-end-bg-color);
    border: var(--match-signal-end-bg-border);
    box-sizing: border-box;
    padding: 12px;
    width: 40%;
    border-radius: 8px;
    text-align: center;
    margin: 0 auto;
}

.friendly-area{
    width: 100%;
    background-color: var(--friendly-bg-color);
    color:#fff;
}

.friendly-area .friendly-area-content{
    padding: 20px;
}

.friendly-area .friendly-area-content a{
    margin:0 10px 0 5px;
    text-decoration: underline;
    line-height: 1.8em;
}

@media screen and (max-width:768px) {
    .team-info-content{
        display: block;
    }

    .stream-game-item .time{
       text-align: center;
       margin-right: 10px;
    }

    .team-info-content .team {
        margin: 10px 10px;
    }

    .team-info-content .team img{
        width: 25px;
        height: 25px;
    }

    .team-info-content .team:nth-child(n+2){
        flex-direction: row-reverse;
    }

    .team-info-content .team .away{
        text-align: right;
    }

    .stream-game-item .league{
        width: 50px;
    }

    .stream-game-item .league a,.stream-game-item .league span{
        width: 50px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vs{
        display: none;
    }

    .stream-play{
        display: flex;
        justify-content: center;
        max-width: 64px;
    }

    .stream-play-link{
        padding: 12px;
        width: 100%;
        max-width: 64px;
    }
}

@media screen and (max-width:400px) {
    .team-info-content .team .home{
        width: 110px;
    }
    
    .team-info-content .team .away{
        display: inline-block;
        width: 110px;
    }
    
}