
#navbar {
    box-shadow: 0px 0.5rem 1rem rgba(83, 165, 31, 0.5) !important;
    padding: 0 !important;
}

.navbar-container {
    max-width: 936px !important;
}

.nav-button-group {
    gap: 0.5rem;
    margin-left: auto !important;
}

.navbar-badge {
    text-decoration: none !important;
    margin-left: 1.5rem !important;
    margin-right: auto !important;
    align-items: center !important;
    color: rgba(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
    img {
        width: 60px;
        height: 60px;
        margin: 0 0.5rem !important;
        transition: height 0.3s ease, width 0.3s ease;
    }
}

@media (max-width: 767.98px) {
    .navbar-badge img {
        width: 40px;
        height: 40px;
    }
}

.background-container {
    padding-top: 1.5rem !important;
    flex-grow: 1 !important;
}

.message-container {
    width: fit-content;
    justify-self: center;
    padding: 0.5rem;
    margin: 1rem 0 !important;
    z-index: 99;
    box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.06),
    0 24px 48px rgba(59,130,246,0.08);
    --message-window-border-color: rgba(226,232,240, 0.8);
    --message-window-bg-color: white;
    border: 1px solid var(--message-window-border-color);
    font-size: 13.5px;
    font-weight: 600;
    background-color: var(--message-window-bg-color);
    border-radius: 15px;
    text-align: center;
    z-index: 1;
    ::marker {
        content: none;
    }
    ul {
        margin: 0;
        padding: 0;
    }
}

.nav-icon {
    height: 30px;
    width: 30px;
    fill: #000000;
    transition: fill 0.3s ease;
}

.nav-button.active,
.nav-button.show {
    color: #fff !important;
    background-color: #38880a !important;
    .nav-icon {
        fill: #fff;
    }
}

.nav-button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    background-color: #eafddf;
    color: #000000;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition:  color 0.3s ease, background 0.3s ease;
}

.nav-button:hover {
    background-color: #419c0c;
    color: #fff;
    --bs-nav-pills-link-active-bg: #419c0c;
    .nav-icon {
        fill: #fff;
    }
}

.dropdown-item.active {
    background-color: #419c0c;
    color: #fff;
}

.dropdown-item {
    transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-item:hover {
    background-color: #eafddf;
    color: #000;
}

body, footer {
    font-family: "Inter", sans-serif !important;
}

header {
    font-weight: 800;
    font-size: 23.5px;
}

footer {
    margin-top: auto;
    justify-content: center;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 400;
    div {
        align-items: center;
        margin-bottom: 0.5rem;
    }
    .copyright {
        margin-bottom: 0 !important;
    }
}