.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .modal {
    background: #fff;
    width: 400px;
    max-width: 90%;
    border-radius: 8px;
    padding: 15px;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-footer {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
  }
  
  .modal-body input {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .hidden {
    display: none;
  }

  