 /* Modal background */
 #modalOverlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  #modalBox {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  }

  #modalBox h2 {
    margin-top: 0;
  }

  #modalBox input {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box;
  }

  #modalBox button {
    padding: 10px 15px;
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
  }

  #modalBox button:hover {
    background: #0056b3;
  }

  .close-btn {
    float: right;
    cursor: pointer;
    font-size: 18px;
  }

  .status-message {
    margin-top: 10px;
    font-size: 14px;
  }