.tabs-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;  /* Add some space between the tabs and content */
}

.dashboard {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 300px;  /* Fixed width for the tabs */
    background-color: #f4f4f4;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.dashboard .nav-item {
    display: block;
    margin: 10px 0;  /* Add spacing between items */
}

.dashboard .nav-item a {
    display: flex;
    text-align: center;
    padding: 15px 15px;
    text-decoration: none;
    color: #333;
    width: 100%;
    border: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dashboard .nav-item a:hover {
    background-color: #fff;
    color: #00A79D;
}

.dashboard .nav-item a.active {

    color: #007bff;
}

.dashboard .nav-item a i {
    margin-right: 8px;  /* Space between icon and text */
}

.content {
    flex-grow: 1;
    padding: 20px 20px 20px;
    background-color: #fff;  /* White background for content */
    border-radius: 8px;
    
}

.profile-form .form-group {
    margin-bottom: 16px; /* Space between form groups */
}

.profile-form .form-group .label {
    display: block;
    margin-bottom: 8px; /* Space between label and input */
    color: #000;
    font-weight: 500; /* Slightly bolder label */
}

.profile-form .form-group .input {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    padding: 12px 15px; /* Adjusted padding for better spacing */
    font-size: 14px; /* Ensure consistent font size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-form .form-group .input:focus {
    border-color: #007bff; /* Focus border color */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Focus shadow */
}

.profile-form .form-group .input::placeholder {
    color: rgba(0, 0, 0, 0.5); /* Lighter placeholder color */
}

/* Error styling for input fields (if necessary) */
.profile-form .form-group .help-block {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}

.profile-form .form-group .input-error {
    border-color: red; /* Error border color */
}

/* Styles for error message component */
.profile-form .mt-2 {
    margin-top: 8px;
}

.profile-form .text-sm {
    font-size: 14px;
}

.profile-form .text-gray-600 {
    color: #4a4a4a;
}

.profile-form .text-gray-800 {
    color: #333;
}

.profile-form .text-green-600 {
    color: #28a745;
}

/* Transition for success message */
.profile-form .transition {
    transition: opacity 0.3s ease;
}


.progressContainer {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.progressContainer .line {
    position: relative;
    width: 100%;
    border-radius: 5px;
    transition: background-color 0.3s ease
}

.line .dotContainer {
    position: absolute;
    top: -8px;
    width: 30px;
    height: 40px;
    transform: translateX(-50%);
    text-align: center;
    
}
  
.dotContainer .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: background-color 0.3s ease
}
  
.progressContainer .progressline {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.dotContainer .label {
    font-size: 12px;
    margin-top: 5px;
  }

.progressText {
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
  }