.registerRadio {
  transform: scale(1.5);
}

.firstRadio {
  margin-left: 20px;
}

.secondRadio {
  margin-left: 10px;
}

.nonTextQuestions {
  padding: 10px;
}

.modalBtn {
  margin-bottom: 20px;
}

.biggerLabel {
  font-size: large;
}

ul.acknowledge {
  float: none;
}

/* Snackbar */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* End Snackbar */

.errorDiv {
  padding: 20px;
  font-weight: bold;
  color: red;
}

.toastMessage {
  font-weight: bold;
}

.teamSelect {
  font-size: large;
  color: red;
  font-weight: 800;
}

.registerNote {
  font-weight: bold;
  margin-bottom: 10px;
}

.registerRequired {
  border: 3px solid red;
}

label {
  font-weight: 600;
}

/* Banner Alert Styles */
.upgrade-banner {
  width: 100%;
  background: #fffbea;
  color: #856404;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 1rem;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #ffe8a1;
  box-sizing: border-box;
}
.banner-icon {
  font-size: 1.5em;
  margin-right: 10px;
  flex-shrink: 0;
}
.banner-text {
  flex: 1;
}
.banner-close {
  background: none;
  border: none;
  color: #856404;
  font-size: 1.5em;
  margin-left: 12px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
@media (max-width: 600px) {
  .upgrade-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.98rem;
    padding: 10px 8px;
  }
  .banner-close {
    align-self: flex-end;
    margin-top: 4px;
  }
  .banner-icon {
    margin-bottom: 4px;
  }
}
