@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
  color-scheme: light dark;
}

body {
  font-family: "Roboto", sans-serif;
}

table, th, td{
  border: 2px inset black;
  border-collapse: collapse;
  padding: 2pt;
}

th {
  background-color: light-dark(lightskyblue, darkblue);
}

table tr:nth-child(odd) {
  background-color: light-dark(#b0bbb4, #464646);
}

.teamname {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.hint {
  font-size: small;
}