.underline {
  text-decoration: underline;
}

.default-margin {
  margin-bottom: 5px;
}

.margin-bottom>* {
  margin-bottom: 5px;
}

.margin-left>* {
  margin-left: 5px;
}

table.default {
  border-collapse: collapse;
}

table.default>tbody>tr>td {
  padding: 10px;
  vertical-align: top;
}

input.percentage {
  width: 50px;
}

table.data {
  border-collapse: collapse;
}

table.data>tbody>tr>td {
  padding: 10px;
  border: 1px solid grey;
  vertical-align: top;
}

table.data-mini>tbody>tr>td {
  padding: 2px;
}

table.data>thead>tr>th {
  padding: 10px;
  border: 1px solid grey;
  text-align: left;
  vertical-align: top;
}

.blink-me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.label {
  font-weight: bold;
}

.align-right {
  text-align: right;
}

.notcurrent {
  color: #a0a0a0;
}

.game-board td {
  width: 50px;
  height: 50px;
  vertical-align: middle;
  text-align: center;
  font-size: xx-large;
  cursor: pointer;
}

.game-board-mini td {
  width: 10px;
  height: 10px;
  vertical-align: middle;
  text-align: center;
  font-size: 8pt;
}

label {
  cursor: pointer;
}

/* a:link {
color: black;
text-decoration: none;
}

a:visited {
color: black;
text-decoration: none;
}

a:hover {
color: black;
cursor: pointer;
text-decoration: underline;
}

a:active {
color: black;
text-decoration: none;
} */