/* Modal Styles */
    .uniqueSlider_modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.7);
      justify-content: center;
      align-items: center;
    }

    .uniqueSlider_modalContent {
      background: white;
      padding: 1rem;
      border-radius: 10px;
      width: 90%;
      height: 90%;
      max-width: none;
      text-align: center;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .uniqueSlider_closeBtn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      cursor: pointer;
    }

    .uniqueSlider_slider {
      display: flex;
      overflow: hidden;
      width: 100%;
      flex-grow: 1;
    }

    .uniqueSlider_slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
      height: 100%;
    }

    .uniqueSlider_slide {
      min-width: 100%;
      box-sizing: border-box;
    }

    .uniqueSlider_slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }

    .uniqueSlider_controls {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
    }

    .uniqueSlider_btn {
      padding: 10px 20px;
      background: #007BFF;
      border: none;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }

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