#panocor-points-list {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    width: 350px;
    height: 100%;
    overflow-y: auto;
    display: none; /* Initially hidden */
  }

  #panocor-points-pair-warn {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 0, 0, 0.5);
    color: white;
    padding: 20px;
    width: 100%;
    height: 10%;
    overflow-y: auto;
    display: none; /* Initially hidden */
  }

  .panocor-point-item {
    margin-bottom: 10px;
  }

  .panocor-delete-button {
    background-color: red;
    color: white;
    border: none;
    padding: 5px;
    margin-left: 10px;
    cursor: pointer;
  }

  .panocor-delete-button:hover {
    background-color: darkred;
  }

  .panocor-close-button {
    padding: 5px;
    cursor: pointer;
    float: right;
  }

  .panocor-run-button {
    padding: 5px;
    margin: 10px;
  }