body {
  margin: 0;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.last-updated {
  margin: 16px 8px 8px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.last-updated a {
  text-decoration: underline;
}

.frame {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.bathroom {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dashboard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  color: white;
  margin: 8px;
  font-size: 14pt;
}

.dashboard div {
  margin: 8px;
}

.dashboard span {
  font-size: 48pt;
}

.dashboard.men {
  background-color: #268bd2;
}

.dashboard.women {
  background-color: #d33682;
}

form {
  flex: 1;
  display: flex;
}

input[type=submit] {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  margin: 8px;
  flex: 1;
  height: 96px;
  border-radius: 4px;
  background-color: white;
  font-size: 14pt;
}

input[type=submit].men {
  color: #268bd2;
  border: 1px solid #268bd2;
  &:active {
    background-color: #d8ebf8;
  }
}

input[type=submit].women {
  color: #d33682;
  border: 1px solid #d33682;
  &:active {
    background-color: #f6d7e6;    
  }
}
