#myModalOff {
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-modaloff {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.container-modaloff h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
}

.container-modaloff p {
  font-size: 1.1em;
  margin-bottom: 10px;
}
.container-modaloff button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background-color: red;
  color: white;
  cursor: pointer;
}
