.disabled-form {
    pointer-events: none;
    opacity: 0.5;
}

.question-text {
    white-space: pre-line;
}

.progress-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
}

.step.active .step-number {
    background-color: #007bff;
    color: white;
}

.step-text {
    font-weight: normal;
}

.step.active .step-text {
    font-weight: bold;
}

.step-divider {
    width: 150px;
    height: 2px;
    background-color: #e9ecef;
    margin: 0 10px;
    transform: translateY(-15px);
}

.step.active + .step-divider {
    background-color: #007bff;
}

.step-divider + .step.active .step-number {
    background-color: #007bff;
    color: white;
}

form[action="/register"] label[for][required]::before,
form[action="/register"] input[required] + label::after {
    content: " *";
    color: red;
}

.disabled-link {
    opacity: 0.5;
    pointer-events: none;
    text-decoration: none;
}

.bootstrap-select .dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

.bootstrap-select .dropdown-toggle {
    background-color: white !important;
    border: 1px solid #ced4da !important;
}

.btn-group .dropdown-toggle {
    background-color: white !important;
    border: 1px solid #ced4da !important;
    color: #495057;
    width: 250px;
    text-align: left;
}

.btn-group .dropdown-toggle:focus {
    box-shadow: none !important;
    color: #495057 !important;
}

.btn-group .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.btn-group .dropdown-item i {
    margin-left: 8px;
}

.btn-group .dropdown-menu {
    width: 100%;
}

.tooltip-inner {
    max-width: 300px;
    text-align: left;
    padding: 8px 12px;
}

#languageLevelBtn::after {
    position: absolute;
    right: .5em;
    top: 50%;
    transform: translateY(-50%);
}

.quiz-progress .progress {
    height: 10px;
}

.quiz-progress .progress-bar {
    transition: width 0.3s ease;
}

.test-question {
    display: none;
}

.test-question.active {
    display: block;
}

.quiz-nav-controls {
    gap: 10px;
    flex-wrap: wrap;
}

.quiz-nav-controls .btn {
    min-width: 120px;
}

.invisible-label {
    opacity: 0;
    pointer-events: none;
}

.multiple-select {
    background-color: white !important;
    border: 0.2px solid #ced4da !important;
}

.ml-1em {
    margin-left: 1em;
}