// .pv-modal {
//     display: none;
//     position: fixed;
//     z-index: 1;
//     left: 0;
//     top: 0;
//     width: 100%;
//     height: 100%;
//     overflow: auto;
//     background-color: rgba(0, 0, 0, 0.4);
//   }
  
//   .pv-show {
//     display: block;
//   }
  
//   .pv-modal-content {
//     background-color: #fefefe;
//     margin: 10% auto;
//     padding: 20px;
//     border: 1px solid #888;
//     width: 80%;
//     max-width: 400px;
//   }
  
//   .pv-modal-header {
//     display: flex;
//     justify-content: space-between;
//     align-items: center;
//     margin-bottom: 10px;
//   }
  
//   .pv-modal-header h3 {
//     margin: 0;
//   }
  
//   .pv-close-btn {
//     background-color: transparent;
//     border: none;
//     font-size: 1.5rem;
//     cursor: pointer;
//   }
  
//   .pv-modal-body p {
//     margin: 0;
//     font-size: 1.2rem;
//   }
  
//   .pv-modal-footer {
//     display: flex;
//     justify-content: flex-end;
//     margin-top: 10px;
//   }
  
//   .pv-confirm-btn {
//     background-color: #2ecc71;
//     color: white;
//     border: none;
//     padding: 10px 20px;
//     border-radius: 5px;
//     cursor: pointer;
//   }
  



/* Alert container styles */
#alert-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  
  /* Alert box styles */
  .alert-box {
    position: relative;
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  /* Alert box heading styles */
  .alert-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Alert box message styles */
  .alert-box p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  /* Alert box button styles */
  .alert-box button {
    background-color: #2196f3;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
  }
  
  /* Alert box button hover styles */
  .alert-box button:hover {
    background-color: #0b7dda;
  }
  