/* modal  */
.woi_v5_modal_overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeIn 0.3s ease-out;
    }

    /* Modal Content */
    .woi_v5_modal_content {
      background: white;
      padding: 30px;
      border-radius: 12px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      opacity: 0;
      transform: scale(0.8);
      animation: modalPop 0.4s ease-out forwards;
    }

    /* Close Button */
    .woi_v5_modal_close {
      position: absolute;
      top: 15px; right: 20px;
      font-size: 24px;
      cursor: pointer;
      color: #aaa;
      background: none;
      border: none;
    }

    .woi_v5_modal_close:hover {
      color: #000;
    }

    /* Animation Keyframes */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes modalPop {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Optional: Trigger Buttons */
    .woi_v5_modal_trigger {
      padding: 10px 20px;
      margin: 10px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .woi_v5_modal_trigger:hover {
      background: #0056b3;
    }




    