/* Cards */
.cards__parent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  min-width: 64px;
  width: 70px;
  height: 100px;
  border: solid black 2px;
  font-size: 30px;
  line-height: 36px;
  margin: 10px;
  box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
  border-radius: 4px;
}
.card:hover {
  filter: brightness(85%);
}
.btn__card {
  background: transparent;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
}
.cards__wrapper {
  max-width: 690px;
  display: flex;
  flex-direction: column;
  align-items: center;  
}
.cards__container{
  display: flex;
  flex-direction: column;
  align-items: center;  
}
.selected_card {
  background-color: lightgrey;
}
/* Result */
.result {
  font-size: 30px;
}
.results__wrapper {
  min-width: 100%;
}
.results-title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px;
}
.show_hide_btn {
  width: 34.833px;
}
.result-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.results__table {
  padding: 16px;
  min-width: 398.65px;
}
table {
  min-width: 100%;
  border: solid lightgrey 1px;
  border-radius: 4px;
  /* box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12); */
  margin-top: 10px;
}
tr {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  background-color: white;
  border-radius: 4px;
}
th,td,.td {
  text-align: left;
  box-sizing: border-box;
  min-width: 15%;
  max-width: 15%;
  /* width: 100%; */
  margin: 0px;
  font-size: 12px;
  display: flex;
  align-items: center;
}
th:first-of-type,td:first-of-type {
  min-width: 30%;
  padding: 0px;
  padding-left: 25px;
  margin: 0px;
}
th:last-of-type,td:last-of-type,.td {
  padding-right: 25px;
}
td.score {
  box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
  border: solid 1px black;
  border-radius: 4px;
  background-color: white;
  width: 35px;
  min-width: 35px;
  max-width: 35px;
  height: 45px;
  font-size: 14px;
  padding: 0px !important;
  margin-top: auto;
  margin-bottom: auto;
  align-self: flex-start;
}
.my_score {
  /* filter: brightness(90%); */
  background-color: lightgrey;
}
.average.average,.average:hover.average:hover {
  border: none;
  cursor: default;
  min-width: 148.8px;
  min-height: 38px;
  background-color: transparent;
}
.greyed {
  background-color: #00000012;
}
/* container */
.new_room_link:hover,.btn:hover {
  background-color: lightgrey;
}
.flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.container__body{
  max-width: 690px;
}
.btn {
  line-height: 36px;
  background: transparent;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  border: 1px solid black;
  min-width: 64px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 13px;
}
.btn:focus {
  box-shadow: 0 0 0 .25rem rgba(0, 0, 0, 0.16);
  outline: 0;
}
.mt-25.mt-25.mt-25 {
  margin-top: 25px;
}
.ml-10 {
  margin-left: 10px;
}
.pointer {
  cursor: pointer;
}
.red {
  color: red;
}
* {
  font-family: "Roboto";
}
/* Banner */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__buttons .btn:first-child {
  margin-right: 25px;
}
.new_room_link {
  text-decoration : none;
  color: black;
}
