#newEventModal2 {
    display: none;
    z-index: 20;
    padding: 25px;
    background-color: white;
    box-shadow: 0px 0px 3px black;
    border-radius: 5px;
    width: 300px;
    top: 150px;
    left: calc(45% - 165px);
    position: absolute;
    font-family: sans-serif;
  }
  
  button {
    width: 75px;
    cursor: pointer;
    box-shadow: 0px 0px 2px gray;
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 5px;
    color: black;
  }
  
  button:hover {
      background-color: black;
      color: gray;
  }