.no-data-found {
    background: #fff;
    padding: 30px;
    font-size: 20px;
    text-align: center;
    border-radius: 20px;
}


/* professionals-sidebar */
.professionals-sidebar {
    overflow: auto;
    width: 260px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    height: 80vh;
    position: sticky;
    top: 100px;
}
.professionals-sidebar h3 {
  font-size: 15px;
  margin: 18px 0 10px;
}
.professionals-sidebar label {
  /*display: flex;*/
  /*justify-content: start;*/
  /*align-items: center;*/
  /*font-size: 14px;*/
  /*margin: 6px 0;*/
  /*cursor: pointer;*/
}
.professionals-sidebar label span {
  font-size: 14px;
}
.professionals-sidebar input {
  margin-right: 8px;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 9999px; /* pill shape */
    padding: 8px 14px;
    width: 100%;
    background: #fff;
}
.search-box svg {
    flex-shrink: 0;
    margin-right: 8px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    color: #333;
    width:100%;
}

.search-box input::placeholder {
    color: #aaa;
}
 .filter-group label:has(input[type="checkbox"]:checked) .filter-count{
      background: #e8f0fe;
      color: #0f68d2;
      font-weight: 600;
    border: 0px solid #e8f0fe;
    padding: 4px 12px !important;
    }
/* Main content */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card */
.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 1px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.card-body {
  flex: 1;
}
.professional_list_cover {
    margin-top: 30px;
}
/*.card-header {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  flex-wrap: wrap;*/
/*}*/
.card-header h4 {
    margin: 0;
    text-transform: capitalize;
}
.card-header span {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}
.tag {
  background: #f1f3f5;
  border-radius: 20px;
  font-size: 12px;
  padding: 4px 10px;
  color: #333;
}
.prof-tagline {
    font-size: 14px;
    margin: 20px 0;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin: 6px 0;
}
.rating span {
  color: #f97316;
  font-weight: bold;
}

/* Action buttons */
.card-actions {
    display: flex;
    width: 20%;
    flex-wrap: wrap;
    height: 100%;
    align-items: end;
    justify-content: center;
}
.card-actions .btn {
    font-size: 0.9rem;
    padding: 7px 12px;
    min-width: 150px;
    margin-top: 20px;
    justify-content: center;
}
.card-actions .btn.btn-outline.button {
    color: #2F2A2A;
}
/* Load more */
.load-more {
  text-align: center;
  margin: 20px 0;
}
.load-more button {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}


/* Container */
.checkbox-tags {

  gap: 0px 8px;
}

/* Hide default checkbox */
.checkbox-tags input[type="checkbox"] {
  display: none;
}

/* Base pill */
.checkbox-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

/* Unchecked state → show + */
.checkbox-tags .tag::after {
  content: "+";
  margin-left: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

/* Checked state → blue pill with × */
.checkbox-tags input[type="checkbox"]:checked + .tag {
  background: #0066ff;
  color: #fff;
  border-color: #0066ff;
}

.checkbox-tags input[type="checkbox"]:checked + .tag::after {
  content: "×";
  color: #fff;
}
.card .skils-item img {
    width: 23px;
    height: auto;
}

.tags ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.tags ul li {
    align-items: center;
    border: 1px solid;
    border-radius: 100px;
    display: flex;
    gap: 7px;
    padding: 0px 10px;
    font-size: 14px;
}
.tags ul li svg {
    width: 13px;
    height: 13px;
}
.professionals-sidebar .filter-group label {
    background: none;
    border: none;
    font-size: 14px;
    padding: 0;
}
.mobile_filter {
    display: none;
}
.mobile-only {
    display:none;
}
.hero-buttons ul li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 100%;
    right: -2px;
    top: 6px;
}
@media only screen and (min-width:768px) and (max-width:1024px) {
    .inner-page-hero-inner img {
        width: 100%;
    }
    .inner-page-hero-inner h1 {
        font-size: 35px;
    }
    .professional_list_cover .user-card-img {
        gap:20px;
        width: 100%;
        display: flex;
        border-radius: 0;
    }
    .professional_list_cover .user-image {
        height: 100px;
         width: 100px;
    }
    .card-header.mobile-only {
        display: block;
        width:70%;
    }
    .professional_list_cover .card-body {
        width: 100%;
        flex: auto;
    }
    
    .professional_list_cover .card {
        flex-wrap: wrap;
    }
    .card-header.desktop-only {
        display: none;
    }
}
@media only screen and (max-width:767px) {
    .professionals-sidebar {
        display: block;
        position: fixed;
        z-index: 1111;
        left: -100%;
        top: 0;
        overflow: auto;
        transition: all 0.3s ease 0.5s;
    }
    .professionals-sidebar.active {
        left: 0;   
        transition: all 0.3s ease 0.5s;
    }
    .professional_list_cover .card {
        flex-wrap: wrap;
    }
    .professional_list_cover .card .card-body {
        width: 100%;
        flex: auto;
    }
    .professional_list_cover .card-actions {
        width: auto;
        height: auto;
    }
   .mobile_filter {
        display: block;
        float: right;
        margin-bottom: 10px;
    }
    main.main {
        width: 100%;
    }
    .professional_list_cover {
        display: block;
    }
    .mobile-only {
        display:block;
    }
    .desktop-only {
        display:none;
    }
    .user-card-img {
        width: 100%;
        border-radius:0;
        display: flex;
        gap: 20px;
    }
    .user-image {
        height: 100px;
        width: 100px;
        background-size: 100%;
        border-radius: 0;
        overflow: hidden;
    }
    .card-header.mobile-only {
        width: 70%;
    }
    
    h1.top-title {
        font-size: 34px;
    }
    .inner-page-hero-inner h1 {
        font-size: 35px;
    }
    .hero-buttons ul {
        flex-wrap: wrap;
    }
    .inner-page-hero-inner {
        flex-direction: column;
    }
    .hero-right img {
        width: 100%;
    }
}

