/* Copyright (c) 2026 Blink-Bot Softwares All Rights Reserved. */
#software_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px 0;
}
#blink-title {
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 10px;
    padding: 10px;
    width: 66vw;
    background-color: var(--soft-ui-bg);
    max-width: 300px;
}
#blink-logo {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 15vw;
    max-width: 50px;
    padding: 10px;
    background-color: var(--soft-ui-bg);
    margin: 7px;
}
#title_div {
    display: flex;
    justify-content: space-between;

    padding: 10px;
    margin: 0px 0px 30px 0px;
}
#switch-theme {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;

    padding: 10px;

    background-color: transparent;
    transition: box-shadow .1s;
}

#switch-theme:hover {
    scale: 1;
}

#switch-theme:active {
    box-shadow: none;
}

#switch-theme > img {
    width: 100%;
    height: 100%;
}