#theme-toggle-container {
    display: flex;
    align-items: center;
    padding: 5px;
}

#theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    padding: 0px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    /*opacity: 0.8;*/
    width: 32px;
    height: 32px;

}

#theme-toggle:hover {
    /*background-color: var(--hover-background-color);*/
    /*opacity: 1;*/
}

#dark-light-theme-icon img {
    width: 20px;
    height: 20px;
    filter: var(--theme-color-filter);
}

.auto-mode-letter {
    font-family: Outfit, Helvetica, sans-serif;
    font-size: 26px;
    font-weight: 300;
    /*color: var(--black-white-opposite-theme);*/
    line-height: 1;
}

:root {
    --bubble-box-shadow-color: rgba(46, 62, 80, 0.2);
}

[data-theme="dark"] {
    --bubble-box-shadow-color: #43505e;
}

.auto-mode-bubble {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 14px;
    height: 14px;
    background-color: var(--background-color);
    box-shadow: 0px 1px 3px 0px var(--bubble-box-shadow-color);
    /*border: 1px solid var(--border-accent-2-color);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-mode-bubble img {
    width: 10px;
    height: 10px;
    filter: var(--theme-color-filter);
    /*filter: invert(1);*/
}


#theme-toggle .filled-on-hover-theme-icon-container img:last-of-type {
    display: none;
}

#theme-toggle:hover .filled-on-hover-theme-icon-container img:first-of-type {
    display: none;
}

#theme-toggle:hover .filled-on-hover-theme-icon-container img:last-of-type {
    display: inline-block;
}


