/* Custom CSS to style checkboxes as chips */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip-container label {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: #edf2f7; /* Tailwind's gray-100 */
    color: #4a5568; /* Tailwind's gray-700 */
    cursor: pointer;
}

.chip-container input[type="checkbox"] {
    display: none;
}

.chip-container label:has(input[type="checkbox"]:checked) {
    background-color: #4299e1; /* Tailwind's blue-500 */
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
  
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 90%;
    object-fit: contain;
  }
  