.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
  }
  
  .hidden {
    display: none;
  }
  
  .confirm-box {
    background: white;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 300px;
  }
  
  .confirm-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .confirm-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .confirm-btn.yes {
    background-color: #d33;
    color: white;
  }
  
  .confirm-btn.no {
    background-color: #eee;
  }
  