
.score_widget_section{
    padding: 10px;
    margin: 0 auto;
    background-color: #141414 !important;
}
/* CSS Adjustments */
#score_container {
    height: 220px;
    overflow-x: auto;
    overflow-y: hidden; /* Disable vertical scroll */
    padding-top: 58px;
    /* height: 100vh; */
    background-color: transparent;
    color: white;
    font-family: 'Lora', 'Helvetica', 'Arial', sans-serif !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 10px 0px;
    scroll-behavior: smooth;
}

.color_score_ind
{
    color: white;
}

.color_score_ind:hover {
    color: #c7c2c2;
    webkit-filter: blur(2px); /* Chrome, Safari, Opera */
    filter: blur(2px);
}

.margin_club {
    
    margin-bottom: -1.1em;
}

#score_container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
  
#header {
    position: sticky;
    top: 0;
}

#page {
    display: flex;
    white-space: nowrap;
}

.date-group {
    display: inline-flex;
    align-items: center;
    margin-left: -1em;
}

.date-header {
    font-weight: bolder;
    color: #d0d0d0;
    /* background: white; */
    font-family: sans-serif;
    position: sticky;
    left: 0;
    min-width: 80px;
    border-radius: 3px;
    padding: 5px 5px;
    margin-left: 10px;
    margin-top: -133px;
    font-size: 13px;
}

.matches {
    padding-top: 30px;
    display: flex;
    overflow-x: auto;
    font-family: 'Lato','Helvetica Neue', 'Helvetica', Arial, sans-serif;
}

.match {
    width: 200px;
}

@media (max-width: 768px) {
    .match {
    width: 150px;
    }
}

.score_position {
    
    font-size: 11px;
    font-weight: 600;
}

.arrow {
cursor: pointer;
    padding: 5px;
    background-color: #4e4e4e52;
    border: none;
    user-select: none;
    z-index: 2;
    border-radius: 23px;
}

.left-arrow {
    position: absolute;
    left: 0;
    margin-top: 60px;
    margin-left: 100px;
}

.right-arrow {
    position: absolute;
    right: 0;
    margin-top: 60px;
    margin-right: 100px;
}



  /* place holders setup */
  .match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: solid 1px #545454;
}
.competition {
    font-size: 0.8em;
    color: #9f9f9f;
}
.status {
    font-size: 0.8em;
    font-weight: bold;
    color: #9f9f9f;
    text-transform: capitalize;
}
.clubs {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    margin-bottom: -6px;
}
.club {
    justify-content: space-between;
    display: flex;
    align-items: center;
}
.club img {
    width: 29px;
    height: 29px;
    justify-content: space-between;
    margin-right: -66px;
    margin-top: -5px;
}
.club-name {
    font-family: sans-serif !important;
    font-weight: 900;
    font-size: 16px;
    margin-top: -30px;
}
.score {
    padding: 1px 5px;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #222;
    border-radius: 5px;
    margin-top: -28px;
}
.explainer {
    font-size: 0.8em;
    font-style: italic;
    color: #ccc;
    text-align: center;
}
.match {
    /* border: 1px solid #ddd;*/
    border-radius: 8px;
    padding: 8px;
    min-width: 200px;
    /* background-color: #fff; */
    margin: 8px;
}



@media (max-width: 650px) {

    #score_container {
        
            margin-top: -58px;
            margin-bottom: -5px;
    
        
    }

    .left-arrow {
        margin-top: 0;
        margin-left: 3px;
    }
    
    .right-arrow {
        margin-top: 0;
        margin-right: 3px;
    }
    

    
}   



/* AS: custom animation for scroll area */
@keyframes shake-scroll {
    0% { scroll-left: 100px; }
    50% { scroll-left: 110px; }
    100% { scroll-left: 100px; }
  }
  
  #score_container.shake {
    animation: shake-scroll 2s ease-in-out infinite;
  }

  /* live match badge feature styles */
  .liveMatch {
    display: inline-block;
    padding: 0 3px;
    border-radius: 13px 4px 0 2px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: #ff0000;
    text-transform: uppercase;
  }
  
  .liveMatch::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    margin: 5px;
    animation: pulse 1s infinite;
  }
  

  /* live match badge feature styles */
  .liveMatchSched {
    display: inline-block;
    padding: 0 8px 0 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background-color: #ff0000;
    text-transform: uppercase;
  }
  
  .liveMatchSched::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    margin: 5px;
    animation: pulse 1s infinite;
  }

  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }