/* themes.css */

    #theme-switcher {
        display: inline-block;
        padding: 2px 6px;
        font-size: 12px;
        color: #ffffff;
        background-color: #0056b3;
        text-decoration: none;
        border-radius: 25px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-right: 5px;
    }

    #theme-switcher:hover {
        background-color: #343a40;
        transform: scale(1.05);
    }

    #theme-switcher:active {
        background-color: #004494;
        transform: scale(0.95);
    }


/* Normal theme */


/* Dark theme */
body.dark-theme {
    background-color: #121212 !important;
    color: #ffffff !important;
}

.bg-body-tertiary.dark-theme {
    background-color: #343a40 !important;
}

.container.dark-theme {
    background-color: #343a40 !important;
}

#searchWordHelp.dark-theme {
    color: yellow !important;
}

.tooltiptext.dark-theme {
    background-color: #343a40 !important;
    color: yellow !important;
}

.footer.dark-theme {
    background-color: #121212 !important;

}


.footer-bottom.dark-theme {
    background-color: #343a40 !important;
    color: yellow !important;
}

div.alert.dark-theme {
    background-color: #343a40 !important;
    color: yellow !important;
}

p.alert.dark-theme {
    background-color: #343a40 !important;
    color: yellow !important;
}