.scoreboard {
  font-family: Montserrat, sans-serif;
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
	font-size : 10pt;


}

table.scoreboard { 
 position: sticky;
}

.cadre-scoreboard {
/*height: 70vh;*/
width: 100%;
margin: auto;
  overflow-y: scroll;
}

.scoreboard thead {
  background-color: #171717;
  color: #ffffff;
	font-family: 'Montserrat';
    font-size: 12pt;
 position: sticky;
  top: 0;

}


.cadre-scoreboard tfoot {
 position: sticky;
  bottom: 0;
}

.scoreboard  th, td {
  text-align: center;
  padding: 12px;
	
}

.scoreboard .column1 {
	width : 25%;
text-align: center;
}

.scoreboard .column2 {
	width : 50%;
}

.scoreboard .column3 {
	width : 25%;
text-align : center;
}

.scoreboard tbody th, td {
  text-align: left;
  padding: 12px;
}

.scoreboard th:first-child {
  border-top-left-radius: 5px;
}

.scoreboard th:last-child {
  border-top-right-radius: 5px;
}

.scoreboard tr:nth-child(even) {
  background-color: #f2f2f2;
}

/*.scoreboard tr:hover {
  background-color: #ddd;
}
*/

.scoreboard td:first-child {
  font-weight: bold;
}

.score {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #ff9800;
}


.cadre-scoreboard table::-webkit-scrollbar{
    box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
.cadre-scoreboard table::-webkit-scrollbar-thumb{
     background: #171717; 
  border-radius: 10px;
}
.cadre-scoreboard table::-webkit-scrollbar-thumb:window-inactive{
    background: #b30000;
}

/* width */
 table::-webkit-scrollbar {
  width: 20px;
}

/* Track */
 table::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
table::-webkit-scrollbar-thumb {
  background: #171717; 
  border-radius: 10px;
}

/* Handle on hover */
table::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}


@media screen and (max-width: 768px) {
  .scoreboard {
    font-size: 14px;
  }

  .scoreboard th, td {
    padding: 8px;
  }
}