

.message_modal {
  position: absolute;
  z-index: 10001;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.message_modal .modal-content {
  background-color: white;
  border: 3px solid black;
  width: 515px;
  height: 150px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 25px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 20px;
}

.message_modal .modal-content h2 {
  text-align: center;
  margin: 0;
  font-size: 1.5em;
  line-height: unset;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.message_modal .read-button{
  background-color: white;
  border: 2px solid #006BA6;
  background-color: #006BA6;
  /* border: none; */
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  transition-duration: 0.4s;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
}

.message_modal .read-button:hover {
  background-color: white;
  color: black;
}

@media only screen and (orientation: portrait) and (max-width: 600px) {
  .message_modal .read-button {
    padding: 6px 5px;
  }
}
