﻿.list {
    flex: 1;
    overflow-y: auto;
}
 .list > h2 {
     margin-bottom: 10px;
 }

.wraplist {
    display: flex;
    flex-flow: row wrap;
    align-items: start;
    align-content: start;
    gap: 20px;
}

.listElement {
    background-color: var(--color-backgroundElements);
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    transition: box-shadow 0.5s;
    align-items: center;
    width: 100%;
}

    .listElement:hover {
        box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.05);
    }

    .listElement h1 {
        color: var(--color-highlight);
        font-size: 0.9em;
        font-weight: normal;
    }

    .listElement h2 {
        color: var(--color-text);
        font-size: 0.7em;
        font-weight: normal;
        margin-top: 5px;
    }

    .listElement > img:first-of-type {
        width: 32px;
        height: 32px;
        align-self: flex-start;
        margin-top: 5px;
        filter: invert(80%) sepia(15%) saturate(443%) hue-rotate(133deg) brightness(100%) contrast(97%);
        margin-right: 10px;
    }

    .listElement > div {
        flex: 1;
    }

    .listElement > img:last-of-type {
        filter: invert(56%) sepia(68%) saturate(1469%) hue-rotate(320deg) brightness(96%) contrast(102%);
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .listElement .additionalColumn {
        flex: 0 1 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .listElement .additionalColumn > h1 {
            background-color: var(--color-blue);
            border-radius: 5px;
            padding: 10px;
        }