#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#modal-overlay .modal {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

#reject-comment {
  width: 100%;
  margin-top: 1rem;
  height: 80px;
  padding: 0.5rem;
  resize: none;
}

p{
    margin-top: 1rem;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}



