#modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 95;
  }

  /* Style for the modal content box */
  .modal-content {
    width: 100%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 95;
  }

  /* Basic button style */
  button {
    padding: 10px 15px;
    margin-top: 10px;
  }