.bs-stepper .step.active .step-trigger::after, .bs-stepper .step.active .bs-stepper-circle{
    background-color: var(--theme-color) !important;
    color: black;
}

.bs-stepper .step.active .bs-stepper-label{
    color: var(--warning-color) !important;
}

.btn-theme{
    background-color: var(--theme-color) !important;
    color: #737373 !important;
}

/* Default styling */
.custom-option {
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Apply styles when the radio inside is checked */
.custom-option:has(.form-check-input:checked) {
    border-color: var(--warning-color);
    background-color: var(--theme-color);
    box-shadow: 0px 0px 10px var(--warning-color);
}
