.elementor-17027 .elementor-element.elementor-element-b6231a8{--spacer-size:110px;}.elementor-17027 .elementor-element.elementor-element-ba34241{--spacer-size:50px;}@media(max-width:767px){.elementor-17027 .elementor-element.elementor-element-5930dce{margin-top:25px;margin-bottom:25px;}}/* Start custom CSS for html, class: .elementor-element-9a35f08 *//* Google Fonts (optional) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* AI Search Container */
#ai-search-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* Heading */
#ai-search-container h2 {
  font-size: 58px;
   font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  color: #3476ba;
  
}

/* Input + Button Wrapper */
.input-with-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  max-width: 700px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  background: #fff;
}

/* Input Style */
.input-with-button textarea {
flex: 1;
  min-height: 120px;
  padding: 16px;
  font-size: 16px;
  border: none;
  outline: none;
  resize: none;
  background: #fff;
  overflow-y: auto;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
 .input-with-button textarea::placeholder {
    color: #9ca3af;
  }

/* Button Style */
#ais-btn {
  position: relative;
  top:35px;
  right: 10px;
  background-color: #3476ba;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.input-with-button button:hover {
  background-color: #eaf7ff;
}

/* Influencer Cards */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.influencer-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #fff;
  padding: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.influencer-card img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  margin-right: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.card-content-ai {
  flex: 1;
}

.card-content-ai h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.card-content-ai h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #666;
}

.card-content-ai .followers {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
  background-color: #e0f2fe;
  color: #0273ab;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
}

.card-content-ai p {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
  text-align: justify;
}

/* Profile Button */
.view-profile-btn {
  background-color: #fff;
  border: 1px solid #0289cc;
  color: #0289cc;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.view-profile-btn:hover {
  background-color: #0289cc;
  color: white;
}

/* Pagination */
#pagination-wrapper {
  margin-top: 20px;
  display: none;
}

#pagination-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: sans-serif;
  color: #333;
  background-color: #f9f9f9;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  width: 870px;
  max-width: 100%;
  margin: 0 auto;
}

#pagination-controls select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: 60px;
}

#pagination-controls button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 6px 10px;
  margin: 0 2px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#pagination-controls button:hover {
  background-color: #0289cc;
  color: white;
  border-color: #0289cc;
}

#pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#pagination-controls #page-info {
  margin: 0 8px;
  font-size: 14px;
}
.input-with-button input,
.input-with-button button {
  outline: none !important;
  box-shadow: none !important;
  border: none;
}

/* Keep the visible outer border for the whole input-with-button container */
.input-with-button {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .input-with-button {
    flex-direction: row;
    width: 100%;
    margin: 0 auto 20px;
  }

  .input-with-button input {
    font-size: 15px;
  }

  .input-with-button button {
    font-size: 16px;
  }

  .influencer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-content-ai h2,
  .card-content-ai h4,
  .card-content-ai p {
    font-size: 13px;
  }

  .card-content-ai p {
    max-width: 260px;
  }

  .view-profile-btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  #pagination-controls {
    flex-direction: column;
    gap: 10px;
  }
}/* End custom CSS */