/* _header.php */

#response_service_search_results {
  max-height: 250px;
  /* Adjust height as needed */
  overflow-y: auto;
  z-index: 1000;
}

#response_service_search_results .list-group-item {
  cursor: pointer;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-title {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

@media only screen and (max-width: 768px) {
  .business-title {
    word-spacing: -2px;
    font-size: 28px;
  }
}

.icon-phone {
  transform: none !important;
}
.business-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.business-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.business-image img {
  width: 100%;
  height: auto;
}

.business-details {
  padding: 15px;
}

.business-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.business-address {
  color: #777;
  margin-bottom: 15px;
}

.business-actions {
  display: flex;
  justify-content: space-between;
}

.btn-follow {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  color: #333;
}

.btn-follow:hover {
  background-color: #e6e6e6;
}

.btn-direction {
  background-color: #337ab7;
  color: white;
}

.btn-direction:hover {
  background-color: #286090;
}

.business-address {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  min-height: 3em;
  /* Ensure space for at least 2 lines */
  line-height: 1.5em;
}
/* Service Suggestion Skelton Loading */
.skeleton-box {
  display: inline-block;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.separator {
  background-color: white;
  width: 100%;
  height: 0.5rem;
}

.category-tabs {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .category-tabs .nav-item {
    flex: 0 0 auto; /* prevent shrinking, width auto */
    white-space: nowrap; /* keep text in one line */
  }

  .category-tabs .nav-link {
    display: inline-block;
    white-space: nowrap; /* avoid text wrapping */
  }
}

.category-tabs .nav-link {
  margin-bottom: 1rem;
  font-weight: 500;
  border: 1px solid #dee2e6;
  margin-right: 5px;
  border-radius: 6px 6px 0 0;
  background: #f8f9fa;
}
.category-tabs .nav-link.active {
  background: #fff;
  border-bottom: 1px solid #fff;
}
.tab-content-custom {
  padding: 15px;
}
.tab-pane-custom a {
  color: #333;
  margin: 0 6px;
  display: inline-block;
}
.tab-pane-custom a:hover {
  text-decoration: underline;
}

/* Profile Page  */
