.display-none {
    display: none;
}

.multi-wizard-step p {
    margin-top: 6px;

}

.stepwizard-row {
    display: table-row;

}

.stepwizard {
    display: table;
    position: relative;
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}


.multi-wizard-step button[disabled] {
    filter: alpha(opacity=100) !important;
    opacity: 1 !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    content: " ";
    width: 100%;
    height: 1px;
    z-order: 0;
    position: absolute;
    background-color: #fefefe;
}

.multi-wizard-step {

    text-align: center;
    position: relative;
    display: table-cell;

}


/* Step Indicator */
.step-indicator .nav-link {
    font-weight: bold;
    color: #aaa;
    transition: color 0.2s ease-in-out;
    padding: 0.5rem 1rem;
}

.step-indicator .nav-link.active {
    color: #007bff;
    border-bottom: 3px solid #007bff;
}


/* Buttons */
button.btn-lg {
    padding: 0.75rem 1.25rem;
}

/* Loading Spinner */
.spinner-border {
    width: 1rem;
    height: 1rem;
}





.skill-wrapper {
    overflow: auto;
    white-space: nowrap;
}


.skills-container {
    display: flex;
    flex-wrap: wrap;
    height: 140%;
}



.skill-badge {
    display: flex;
    align-items: center; /* Vertically center text */
    justify-content: center;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap; /* Ensure long text doesn't wrap */
    transition: background-color 0.3s ease;
}

.skill-badge:hover {
    background-color: #d0d0d0; /* Add hover effect */
}

.skill-wrapper::-webkit-scrollbar {
    height: 8px;
}

.skill-wrapper::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}



 .divider {
     height: 5px;
     background: linear-gradient(to right, #ffcc00, #ffffff, #ffcc00);
 }
