
  
  .tab-content {
    margin-top: 20px;
  }
  .form-group input, .form-group select {
    background-color: #f8f9fa;
    color: #333;
  }
  .next-step {
    background-color: #333333;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    font-size: 18px;
    border-radius: 19px;
  }



  @media (max-width: 767px) {
    .left-side h1 {
      font-size: 40px;
    }
    .left-side p {
      font-size: 18px;
    }
    .form-container {
      padding: 20px;
    }
    .nav-tabs .nav-link {
      padding: 8px 15px;
    }
    .next-step {
      font-size: 16px;
    }
  }

  @media (max-width: 575px) {
    .left-side {
      padding: 10px;
    }
    .left-side h1 {
      font-size: 30px;
    }
    .left-side p {
      font-size: 16px;
    }
    .form-container {
      padding: 15px;
    }
    .nav-tabs .nav-link {
      padding: 5px 10px;
      font-size: 14px;
    }
    .next-step {
      font-size: 14px;
      padding: 8px;
    }
  }


  .nav-tabs .nav-item {
position: relative;
}

.tab-line {
display: inline-block;
width: 40px; /* Adjust width as needed */
height: 2px;
background-color: #6f6af8;
margin-left: 5px; /* Space between number and line */
}


.nav-tabs .nav-link {
width: 40px;  /* Set width and height to make it circular */
height: 40px;
border-radius: 50%;  /* Makes the button circular */
background-color: #ccc;  /* Grey color for non-active state */
color: #333;  /* Text color */
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
transition: background-color 0.3s, color 0.3s;
margin-right: 10px; /* Space between circles */
}

.nav-tabs .nav-link.active {
background-color: #333;  /* Blue color for active state */
color: #fff;  /* White text color when active */
}

/* Add the line next to each tab except the last one */
.nav-tabs .nav-item {
position: relative;
}

.nav-tabs .nav-item .tab-line {
display: inline-block;
width: 40px; /* Adjust width as needed */
height: 2px;
background-color: #333;
margin-left: 5px; /* Space between number and line */
}

/* Hide the tab-line for the last tab to avoid it appearing after the last item */
.nav-tabs .nav-item:last-child .tab-line {
display: none;
}


.day-box {
  height: 52px;
  color: black;
  background: white;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    width: 195px;
}
.form-check-input {
    margin-right: 8px; /* Adds space between the checkbox and label */
}

.form-check .form-check-input {
float: left;
margin-left: -0.1em;
}

.form-check-label {
margin-left: 21px;
margin-bottom: -4px;
}


.next-steps {
  margin-top: 25px;
  background-color: #333333;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 18px;
  border-radius: 19px;
}


.form-control {
  height: 52px;
  background: #fff;
  color: #000;
  font-size: 18px;
  border-radius: 19px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}


.schedule-box {
  border: 1px solid #000;  /* Border for the box */
  border-radius: 10px;
  padding: 20px;            /* Padding inside the box */
 
}

.schedule-box ol {
  list-style-type: decimal;  /* Numbered list style */
  margin: 0;                 /* Remove margin */
  padding-left: 20px;        /* Add padding to the left for proper indentation */
}

.schedule-box li {
  margin-bottom: 10px;       /* Space between each list item */
}






 /* Responsive styling for smaller screens */
 @media (max-width: 576px) {
  .nav-tabs .nav-link {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .nav-tabs .tab-line {
    height: 1px;
    margin: 0 3px;
  }

  .nav-tabs {
    /* flex-wrap: nowrap; */
    /* overflow-x: auto; */
    /* -webkit-overflow-scrolling: touch; */
  }

  .nav-tabs .nav-item {
    flex-shrink: 0;
  }
}

/* * For tablets and smaller screens */ */
@media (max-width: 768px) {
  .day-box {
    width: 100%;
  }
  .heads{
text-align: center;
  }
}




#days-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* Add spacing between checkboxes */
}

/* Style for each checkbox and its label */
.day-checkbox-wrapper {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc; /* Add border to each checkbox wrapper */
  border-radius: 5px;
  
}

.day-checkbox-wrapper input[type="checkbox"] {
  margin-right: 10px; /* Add space between checkbox and label */
}

.day-checkbox-wrapper label {
  margin: 0;
}

div.day-checkbox-wrapper{
  border-radius: 7px !important;
    border: 2px solid #365c33 !important;
}


div.day-checkbox-wrappers{
  border-radius: 7px !important;
    border: 2px solid #365c33 !important;
}