#state-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  padding: 2rem;
}

#close-state-drawer {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background-color: transparent;
  border: 1px solid #2a3167;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

#close-state-drawer:hover {
  background-color: #2a3167;
}

#close-state-drawer svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #2a3167;
}

#close-state-drawer:hover svg {
  color: white;
}

.popup-text {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #2a3167;
}

#state-drawer p {
  margin: 0;
  color: #2a3167;
}

.select-label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: #2a3167;
}

#user-state {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 0.5rem;
}

#save-state {
  color: #2a3167;
  padding: 7px 0;
  margin-top: 2rem;
}

#save-state:hover {
  transform: none;
  background: linear-gradient(to right, #5a3ba4, #4364da, #4bbefe) border-box;
  color: #fff!important;
}

#reset-state{
font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Saira';
    text-transform: uppercase;
    border: none;
    text-decoration: underline;
    background-color: white;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    cursor: pointer;
    letter-spacing: 2px;
}