.container .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1vh 0;

    .button {
        padding: 2%;
        margin: 0 1vw 0 0;
        background-color: var(--gray-color);
        color: var(--white-color);
        text-decoration: none;
        border-radius: 10px;
    }

    .button:hover {
        background-color: var(--green-color);
    }
}

.category-container,
.tool {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    .separator {
        flex: 1;
    }

    .category,
    .button {
        padding: 2%;
        margin: 0 1vw 0 0;
        background-color: var(--gray-color);
        color: var(--white-color);
        text-decoration: none;
        border-radius: 10px;
    }

    .button {
        cursor: default;
    }

    .home.button {
        cursor: pointer;
    }

    .category:hover,
    .button:hover {
        background-color: var(--green-color);
    }
}

.subtitle {
    margin: 1vh 0;
    font-size: 1.7rem;
}

.tool-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tool-container-link {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#os,
#software {
    scroll-margin-top: 81px;
}

.tools {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    .tool-icon {
        width: 64px;
        height: 64px;
    }

    .tool-description {
        flex: 1;
        padding-left: 10px;
    }

    .tool-description .tool-title {
        color: var(--black-color);
        text-align: left;
    }

    .tool-description .tool-version {
        color: var(--gray-color);
        margin: 1vh 0;
        font-weight: normal;
        text-align: left;
    }

    .tool-description .badges {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.badges {
    span {
        padding: 1%;
        margin-right: 1vw;
        border-radius: 10px;
        cursor: default;
        font-size: 1rem;
    }

    .badge {
        background-color: #588157aa;
    }

    .state.used {
        background-color: #588157aa;
    }

    .state.not-used {
        background-color: rgba(129, 87, 93, 0.67);
    }
}