.modal {
  display: none; /* ensures it's invisible until triggered */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}


.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  width: 400px;
  border-radius: 8px;
  position: relative;
  font-family: 'Ubuntu Mono', monospace;
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-content label {
  display: block;
  margin-top: 10px;
}

.modal-content input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
}

.green-btn {
  background-color: green;
  color: white;
  padding: 10px;
  margin-top: 20px;
  width: 100%;
  border: none;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.switch-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.switch-text a {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}
.modal-content textarea {
  width: 100%;
  height: 100px;
  padding: 8px;
  margin-top: 5px;
  box-sizing: border-box;
  resize: vertical;
}

