/* Define your custom primary color */
:root {
    --bs-primary: #046a38; /* Your desired color */
    --bs-btn-active-bg: #fbdd40;
    --bs-link-color: #046a38;
    --bs-secondary: #fbdd40;
    /* --bs-body-font-size: 18px;; */
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
}

.btn-default {
    color: #adadad;
}