html,
body {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 100%;
  margin: 0;
}

#app {
  height: 100%;
}

a,
.btn-link {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.valid.modified:not([type="checkbox"]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.tile-background {
  background-image: url("../img/background.webp");
  background-size: contain;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.double-border {
  background-color: white;
  border: sandybrown 6px solid;
  outline: 3px solid sandybrown;
  outline-offset: -10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  width: 80%;
  max-width: 400px;
  min-height: 350px;
  padding: 30px 0;
}

.custom-radios {
  display: flex;
}
.custom-radios input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
  margin: 0;
}

.custom-radios label {
  font-family: Kufam;
  background-color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid rgb(150, 150, 150);
}
.custom-radios label.first {
  border-radius: 4px 0 0 4px;
}

.custom-radios label.last {
  border-radius: 0 4px 4px 0;
}

.custom-radios input[type="radio"]:checked + label {
  background-color: #4395b062;
  border-color: #4394b0;
}

.custom-radios input[type="radio"]:focus + label {
  border: 2px dashed #444;
}

.menu-item {
  font-size: 1.4rem;
  font-weight: bold;
  font-family: Kufam;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  color: #4394b0;
  position: relative;
  width: fit-content;
}

.menu-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #4394b0;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.menu-item:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.menu-item:active {
  color: #32768d;
}

.form-submit {
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
  margin: 15px 0;
  
}

.custom-form {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 90%;
  width: 100%;
}

.custom-form-group {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.player-name-inputs {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

h1 {
  color: #444;
  margin: 5px 0 20px 0;
  font-size: 1.9em;
}