/* Tab container and active state */
.nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
  }
  
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: 0;
    padding: 10px 15px;
    margin-right: 5px;
    font-weight: bold;
    color: #007bff;
    background-color: transparent;
  }
  
  .nav-tabs .nav-link.active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 5px 5px 0 0;
  }
  
  .nav-tabs .nav-link:hover {
    color: #0056b3;
    background-color: transparent;
    border-color: #ddd;
  }
  
  /* Tab pane content - hidden by default */
  .tab-content {
    display: flex;
    flex-direction: column;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  /* Show active tab pane */
  .tab-pane.show {
    display: block;
  }
  
  .tab-pane.show.active {
    opacity: 1;
  }
  
  /* Optional - To add smooth scrolling effect when switching between tabs */
  html {
    scroll-behavior: smooth;
  }
  
  /* Optional - Adding some padding to tab content for aesthetics */
  .tab-content > .tab-pane {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Adjusting tab content layout */
  .tab-content ul {
    padding-left: 20px;
    list-style-type: none;
  }
  
  .tab-content ul li {
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Styling for images and badges inside profile section */
  .tab-pane #profile .badge {
    display: inline-block;
    margin: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 10px;
  }
  
  .tab-pane #profile img {
    border-radius: 50%;
    max-width: 100px;
  }
  
  .tab-pane #profile i {
    font-size: 50px;
    color: #007bff;
  }
  .profile-box{
    border: 1px solid #eee;
    margin-top: 10px;
    box-shadow: 1px 1px 12px #eee;
    padding: 5px;
  }
  .flex-center{
    display: flex;
    justify-content: center;
  }
  
  .round-box-fill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #8d1b1b;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: white;
}

  /* Responsive design adjustments */
  @media (max-width: 768px) {
    .nav-tabs {
      flex-direction: column;
    }
  
    .nav-tabs .nav-link {
      border-radius: 5px;
      margin-bottom: 10px;
    }
  
    .tab-content .tab-pane {
      padding: 10px;
    }
    .achivement-badge-container
    {
      padding-left: 0px !important;
      padding-right: 0px !important;
      
    }
  }
  

/* Follow Action */

.follow-container {
  display: flex;
  justify-content: space-between; /* Aligns left and right sections */
  align-items: center; /* Vertically centers the items */
}

.follow-left {
  /* Button container styling */
}

.follow-right {
  display: flex;
  justify-content: space-between; /* Spaces out the following and followers info */
  width: 200px; /* Adjust width as needed */
}

.follow-info {
  display: flex;
  flex-direction: column; /* Aligns label and value vertically */
  margin-left: 20px; /* Space between info sections */
}

.text-blue-600{
  font-weight: bold;
  color: blue;
}

.bg-running-website{
    background-color: #b7b7b7;
    display: inline-block !important;
    margin-bottom: 5px;
    border-radius: 3px;
}
.other-profile-section{
  height: auto;
    padding: 10px;
    background-color: #d1d1d1;
    color: #000953;
    margin-bottom: 10px;
}

.share-on-facebook{
  background-color: rgb(24, 119, 242);
  color: white;
  padding: 3px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  border: none;
  font-weight: normal;
}
.user-small-logo{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 5px;
    position: absolute;
    right: 10px;
}
.filter-circle{
      background: #141414;
    color: white;
    font-size: 0.8rem;
    border-radius: 50%;
    padding: 0px 6px;
    margin-left: 0;
    vertical-align: middle;
    position: absolute;
    margin-left: 10px;
}

.help-img-container img{
    margin-bottom: 10px;
    width: 80%;
    border: 5px solid #6b6b6b;
    /* padding: 10px; */
    border-radius: 10px;
}

.help-img-container p{
    color: #6f83cf;
    padding: 0;
    font-size: 1rem;
    background-color: #b9b8ff;
}

.help-img-container .step{
  color: #05175b;
    padding: 0;
    font-size: 1rem;
}
.nav-link.active {
  background-color: #6487ff;
  color: white;
  border-color: #6487ff;
}

.clear-icon {
 position: absolute;
  right: 78px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2rem;
  color: #ff0606;
}

.clear-icon:hover {
  color: #333;
}
.search-short
{
      margin-top: -10px;
    height: 38px;
    padding: 10px;
    font-size: 13px;
}