.theme-icon-active {
    display: none;
}

[data-bs-theme="dark"] .theme-icon-active.bi-toggle-off {
    display: inline-block;
}

[data-bs-theme="light"] .theme-icon-active.bi-toggle-on {
    display: inline-block;
}

[data-bs-theme="auto"] .theme-icon-active.bi-circle-half {
    display: inline-block;
}

.theme-icon {
    display: inline-block;
}

[data-bs-theme="dark"] .bi-toggle-off,
[data-bs-theme="light"] .bi-toggle-on,
[data-bs-theme="auto"] .bi-circle-half {
    display: none;
}

/* https://icons.getbootstrap.com/ */

html, body {
    height: 100%;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}