.ft-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .ft-popupTitle {
    background: #333;
    color: white;
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
  }
  .ft-popupBody {
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
    text-align: center;
  }
  .ft-popupButtons {
    margin-top: 20px;
  }
  .ft-btn {
    padding: 8px 16px;
    margin: 0 10px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
  }
  .ft-btn-confirm {
    background: #d33;
    color: white;
  }
  .ft-btn-cancel {
    background: #ccc;
    color: black;
  }