/* Popup Overlay */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Popup Image Container */
    .popup-content {
      position: relative;
      display: inline-block;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #fff;
      border: none;
      font-size: 20px;
      border-radius: 50%;
      cursor: pointer;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Image Styling */
    .popup-image {
      display: block;
      max-width: 90vw;
      max-height: 90vh;
      border: none;
      border-radius:10px
    }