.steam-window {
    display: flex;

    flex-direction: column;

    position: fixed;
    top: 10vh;
    left: 70vw;

    width: 21vw;
    height: 80vh;
    background-color: #4c5844;
    resize: both;
    overflow-y: hidden;
    min-width: 21vw;
    min-height: 15vh;
    border: solid;

    border-width: 1px;

    border-bottom-color: #333B2E;
    border-right-color: #333B2E;

    border-top-color: #98a58e;
    border-left-color: #98a58e;

    transition: translate 1s, scale .50s;
    user-select: none;
}

.steam-top-bar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 32px;
}

.steam-window-icon {

    vertical-align: revert;

    margin-top: 6px;
    margin-left: 6px;
    width: 16px;
    height: 16px;
}

.steam-close-button {
    vertical-align: top;
    margin-top: 5px;

    height: 20px;
    width: 20px;
    background-color: #4c5844;
    border: solid;

    border-width: 1px;
    border-bottom-color: #333B2E;
    border-right-color: #333B2E;

    border-top-color: #64745A;
    border-left-color: #64745A;

}

.steam-content {

    width: 95%;
    height: 82%;

    background-color: #3e4637;

    border: solid;
    border-width: 1px;

    border-bottom-color: #64745A;
    border-right-color: #64745A;

    border-top-color: #333B2E;
    border-left-color: #333B2E;

    overflow-y: auto;

    align-self: center;
    justify-self: flex-end;


}

.steam-buttons {
    user-select: none;
    margin-left: 10px;
    width: 50%;
    display: flex;
    gap: 8px;
    justify-content: space-around;
}

.steam-button {
    color: white;
    font-family: Verdana, serif;
    font-size: 12px;
}

.steam-search-utilities {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 5px;
}

.steam-search-type {
    margin-right: 5px;
    background-color: #4c5844;
    color: white;

    height: 22px;
    width: 70px;
    font-size: 12px;
    text-indent: 1px;

    border: solid;
    border-width: 1px;

    border-bottom-color: #333B2E;
    border-right-color: #333B2E;

    border-top-color: #64745A;
    border-left-color: #64745A;
}

.steam-search-bar {
    background-color: #3e4637;
    width: 100px;
    height: 24px;
    text-indent: 5px;
    font-style: italic;
    color: #ffffff;
    font-size: 12px;



    border: solid;
    border-width: 1px;

    border-bottom-color: #64745A;
    border-right-color: #64745A;

    border-top-color: #333B2E;
    border-left-color: #333B2E;
}

.steam-search-bar::placeholder {
    color: #ffffff;
}

.steam-game {
    display: flex;
    height: 22px;
    margin-top: 3px;
    margin-left: 4px;
    text-align: center;
    vertical-align: middle;
}

.steam-game-icon {
    user-select: none;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-left: 2px

}

.steam-game-name {
    user-select: none;
    color: white;
    height: 100%;
    margin-left: 2px;
    font-size: 13px;
}

.steam-game:hover {
    background-color: #282e22;
}

.steam-close-button:active {
    filter: brightness(80%);
}

.steam-button:hover {
    text-decoration: underline;
}

.steam-search-bar:focus {
    outline: none;
    --font-style: normal;
}