body {
  -webkit-text-size-adjust: 100%;
}

input:not([type="radio"]):not([type="checkbox"]) {
  -webkit-appearance: none;
  border-radius: 0;
}

.calendar {
  color: #ffffff;
  background-color: #333;
  background-image: linear-gradient(0deg, #333, #777);
}

.tableView {
  border-color: #fcfcfc;
  width: 100%;
}

.btn {
  font-family: CenturyGothic, Arial, Helvetica, sans-serif;
  background-color: #33507c;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
  width: 100%;
}

.combobox {
  font-family: CenturyGothic, Arial, Helvetica, sans-serif;
  background-color: white;
  border: none;
  color: #33507c;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
  width: 100%;
  height: 35px;
}

.register {
  background-color: #accbf9;
  color: black;
  border: 2px solid #accbf9;
}

.register:hover {
  background-color: white;
  color: #33507c;
}

.unregister {
  background-color: #33507c;
  color: white;
  border: 2px solid #33507c;
}

.unregister:hover {
  background-color: white;
  color: black;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form {
  overflow: auto;
}

.hidden {
  display: none;
}

.info {
  width: 47%;
}

@media screen and (max-width: 480px) {
  .info {
    display: none;
    width: auto;
  }
}