/* Style for modal dialog */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* Updated margin */
  padding: 15px; /* Updated padding */
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  text-align: center;
  max-height: 80%; /* Added max-height */
  overflow-y: auto; /* Added overflow-y */
}

/* Center heading and left-align paragraphs */
.modal-content h4 {
  text-align: center;
}

.modal-content p {
  text-align: left;
}

/* Style for close button */
.close {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}
