/*=========================
    CUSTOM POPUP STYLES
==========================*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .popup-overlay.show {
    opacity: 1;
    visibility: visible;
  }
  
  .popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .popup-overlay.show .popup-box {
    transform: scale(1);
  }
  
  .popup-icon {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .popup-icon .success {
    color: #198754;
  }
  
  .popup-icon .error {
    color: #dc3545;
  }
  
  .popup-icon .confirm {
    color: #ffc107;
  }
  
  .popup-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--colorBlack);
  }
  
  .popup-box p {
    font-size: 16px;
    color: var(--paraColor);
    margin-bottom: 25px;
  }
  
  .popup-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .popup-buttons .common_btn {
    padding: 10px 30px !important;
    font-size: 16px;
  }
  
  .popup-buttons .btn-secondary {
    background-color: #6c757d;
    border: none;
  }
  
  .popup-buttons .btn-secondary:hover {
    background-color: #5a6268;
  }