.fixed-banner-top {
      margin-top: -25px;
      width: 100%;
      left: 0;
      align-items: center;
      z-index: 999998;
      display: flex;
      flex-direction: column;
      padding-bottom: 10px;
    }
    #close-banner-button {
        text-align: center;
        font-size: 15px;
        font-weight: bold;
    }

    #close-banner-button a {
        background: #ff8a00;
        padding: 5px 39px;
        color: #000;
        text-decoration: none;
    }

    #close-banner-button a:hover {
        background: #e67e22;
        color: #fff;
    }

    #banner-content a {
        display: block;
    }
    #banner-content {
        margin: 0 10px;
    }
.overlay-live {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border-radius: 10px;
}

.overlay-content-live {
    text-align: center;
}

.play-icon-live {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
}

.text-live {
    padding: 20px;
    background: #7089e957;
    border-radius: 9999px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.player-container-live {
    position: relative;
    width: 100%;
    min-height: 446px!important;
    max-width: 1200px;
    border: 2px solid #1abaff;
    border-radius: 10px;
    background: linear-gradient(0deg, rgb(26, 186, 255) 20%, rgb(26, 186, 255, 0.3) 100%);
}

#player-live {
    max-width: 1200px;
    max-height: 660px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.live-calendar {
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#commentators-table-live {
    margin: 20px auto;
    min-height: 160px;
    max-width: 1200px; 
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.commentators-grid-live {
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    box-sizing: border-box; 
}

.league-and-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
}

.league-title-live {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    flex-basis: 50%; 
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.match-status-live {
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    text-align: right
}

.match-status-live.live-live {
    background-color: #d32c31;
}

.match-status-live.upcoming-live {
    background-color: #fc0;
}

.match-item-live {
    border: 1px solid #139dff;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.match-info-live {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 10px;
    height: 100px;
    border-bottom: 1px solid #d32c31;
}

.team-info-live {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-logo-live {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    border: 1px solid #139dff;
    border-radius: 9999px;
}

.team-name-live {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-overflow: ellipsis;
}

.match-time-live {
    flex: 1;
    text-align: center;
}

.vs-live {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #888;
}

.time-live {
    display: block;
    font-size: 12px;
    color: #555;
}

.commentator-info-live {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    height: 100px;
    position: relative;
}

.commentator-avatar-live {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.commentator-name-live {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 5px;
}

.live-tag {
    font-size: 10px;
    font-weight: 700;
    color: white;
    background-color: #D32C31;
    padding: 0 0.25rem;
    border: 1px solid white;
    border-radius: 9999px;
    position: absolute;
    top: 50px;
    right: 50%;
    transform: translateX(50%);
}

.no-match-found-live {
    text-align: center;
    color: #676571;
}

.not-found-img-live {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    .commentators-grid-live {
        display: flex; 
        overflow-x: auto; 
        gap: 10px;
        margin: 10px;
        scroll-snap-type: x mandatory;
    }
    .match-info-live{
    	height: 60px
    }
	.commentator-info-live{
    	margin-top: 0;
    	height: 70px;
    }
    .commentator-avatar-live{
    	width: 28px;
    	height: 28px;
    }
    .match-item-live {
        flex: 0 0 45vw;
        max-width: 43vw;
        box-sizing: border-box; 
        scroll-snap-align: start;
    }

    .player-container-live {
        min-height: auto !important;
    }
    .commentators-grid-live::-webkit-scrollbar {
        display: none; 
    }

    .commentators-grid-live {
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }
    #commentators-table-live{
    	padding: 0;
        margin: 10px auto;
    }
    .match-status-live {
      font-size: 8px;
      font-weight: 700;
      padding: 5px;
    }
    .team-logo-live {
        width: 28px;
        height: 28px;
    }
    .team-name-live{
      font-size: 9.66px;
      font-weight: 700;
  	}
    .live-tag{
    	top: 25px;
    }
    .text-live {
    	padding: 5px 10px;
		font-size: 13px;
		font-weight: 700;
    }
    .live-calendar{
    	padding: 5px 10px;
    }
    .time-live{
    	font-size: 7px;
    }
}