.button {
  display: inline-flex;
  justify-content: center;
  border-radius: 5px 5px 5px 5px;
  margin: 30px;
  background-color: purple;
  color: white;
  padding: 5px 5px 5px 5px;
  border: solid;
  
}

.center {
  text-align: center;
  
}

.btn {
  display: inline-block;
  justify-content: center;
  border-radius: 20px;
  color: black;
  background-color: rgba(255, 0, 255, 0.253);
  height: 30px;
  width: 60px;
  text-decoration: none;
  text-align: center;

}
.btnCancel {
  display: inline-block;
  justify-content: center;
  border-radius: 20px;
  color: black;
  background-color: rgba(255, 255, 255, 0.253);
  height: 30px;
  width: 60px;
  text-decoration: none;
  text-align: center;

}
.btnDisabled {
  display: inline-block;
  justify-content: center;
  border-radius: 20px;
  color: black;
  background-color: rgba(255, 0, 255, 0.253);
  height: 30px;
  width: 60px;
  text-decoration: none;
  text-align: center;
  opacity: 0.5;
}

.error {
  display: inline;
  color: white;
  background-color: red;
}

.alert {
  position: fixed;
  top: -100px;               
  left: 50%;
  transform: translateX(-50%);
  background-color: red; 
  color: white;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;                
  transition: all 0.5s ease; 
  z-index: 9999;
}
.alert.show {
  transition: all 0.5s ease; 
  top: 20px;                 
  opacity: 1;                
}

.hidden{
  display: none; 
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}

.confirmBox {
  display: inline;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid purple;
  background-color: rgb(255, 250, 250);
  padding: 10px;
  margin: 0 auto;
  z-index: 999;
  text-align: center;
}



.balance {
  position: fixed;
  top: 15px;
  right: 20px;

  font-weight: 600;
  font-size: 14px;

  padding: 8px 14px;
  border-radius: 8px;

  background: rgba(0, 0, 0, 0.75);
  color: white;

  z-index: 1000;
}

textarea {
   width: 50%;
   height: 100px;
  font-size: 11px;
}