<style>
  .popup-overlay {
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
  }
  .popup-content {
      background: #fff;
      padding: 30px;
      max-width: 500px;
      width: 90%;
      border-radius: 8px;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  #popup-close {
      position: absolute;
      top: 10px; right: 15px;
      background: transparent;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: #333;
  }
  #tab-title-additional_information {
      display: none;
  }
  .prodDetTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .prodDetTable th,
  .prodDetTable td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
  }

  .prodDetTable th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
    width: 40%;
  }
  #tab-description h2 {
      display: none;
  }

  .prodDetTable tr:nth-child(even) {
    background-color: #fcfcfc;
  }

  .prodDetTable tr:hover {
    background-color: #f1f1f1;
  }

  #tab-description h2 {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
  }
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}
.search-svg svg {
    display: block;
}
@media (max-width: 786px) {
    .search-svg {
        right: 30px !important;
    }
}
</style>