
#modal, #modal2 {
  display: none;  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 1000; 
  justify-content: center;
  align-items: center;
  text-align: center;
}


#modal-message, #modal2-message {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: bold;
  color: #333;
  max-width: 90%;
  word-wrap: break-word;
}


body.on-modal {
  overflow: hidden; 
}


#modal, #modal2 {
  transition: opacity 0.3s ease-in-out;
}
