.theme-toggle-switch {
    padding-left: 15px;
}

.theme-toggle-switch .nav-link {
    --toggle-switch-size: 30px;
    align-items: center;
    background-color: #D99E00;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    height: var(--toggle-switch-size);
    width: var(--toggle-switch-size);
}

    .theme-toggle-switch .nav-link i {
        font-size: 1.3rem!important;
        position: relative;
        top: 1px;
    }

    .theme-toggle-switch .nav-link.bx-moon {
        background-color: #386CC9;
        color: white;
        transition: all 0.3s ease;
        font-size: 1.3rem !important;
        position: relative;
    }

        .theme-toggle-switch .nav-link.bx-moon::before {
            position: relative;
            top: 1px;
        }


