html, body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  /* background: black; */
}

.body_remote {
  background:  #aaaaaa;
}

table {
  background-color: white;
  font-size: 30px;
  margin: 10px;
}

p {
  margin-top: 16px; /* to be updated if font-size is changed*/
  margin-bottom: 15px;
}

td {
  background-color: #2558a1;
  color: white;
  text-align: center;
  width: 55px;
  line-height: 1px;
  /*height: 10px; */
}

.name {
  width: auto;
  text-align: left;
  padding-left: 10px;
  padding-right: 20px;
}

.logo_img {
  height: 40px;
  overflow: visible;
}

.logo_col {
  background-color: white;
  width: 5px;
}

.hidden {
  display: none;
}

.visible {
  display: table-cell;
}

.current_set {
  background-color: #da2f2f;
}

.finished_set {
  background-color: #2558a1;
}

.control_table {
  background: #aaaaaa;
  width: 100%;
  height: 40vh;
  border: none;
}

.table_color {
  background-color: #ffffff;
}

.score_button {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  place-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  margin-bottom: 10px;
}

.control_btn,
.control_set_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  font-size: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  border: 1px solid white;
  background-color: #2558a1;
  color: white;
  border-radius: 5px;
  padding: 0;
  box-sizing: border-box;
  padding-bottom: 8px;
}

.control_set_btn {
  height: 50px;
  width: 50px;
  font-size: 50px;
  margin: 16px;
}

button {
  background: linear-gradient(to bottom, #2558a1 5%, #0144a1 100%);
  background-color: #2558a1;
  border-radius: 6px;
  border: 1px solid #2558a1;
}

.large_btn {
  width: 50%;
  box-shadow: 0px 1px 0px 0px #f0f7fa;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  padding: 4px 24px;
  text-decoration: none;
  text-shadow: 0px -1px 0px #5b6178;
}

.team_color {
  border-radius: 5%;
  width: 15px;
  border: 1px solid black;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}

/* specific case : Firefox */
@-moz-document url-prefix() {
  p {
    margin-top: 22px;
  }
}