#darkModeToggle{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #006633;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 9999;
}

body.dark-mode{
    background: #111 !important;
    color: white !important;
}

body.dark-mode .bg-primary,
body.dark-mode .bg-secondary,
body.dark-mode .bg-light,
body.dark-mode .container-fluid,
body.dark-mode .card{
    background: #1b1b1b !important;
    color: white !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode p,
body.dark-mode li,
body.dark-mode a{
    color: white !important;
}