.itameList {
    --minWith: 200px;

    & .collection-header {
       margin-bottom: 1rem;
        background-color: var(--bg-color-2);
        text-align: center;
        
       
    }



    & input{
        padding: 0.5rem;
        width: 80%;
        max-width: 400px;
    }
    & select{
        padding: 0.5rem;
    }
    & a{
        text-decoration: none;
    }
    & h2{
        margin-left: 0;
        display: inline;
        
    }

    & #suchfeld {
        width: 60%;
        margin: 0 1rem;
    }

    & .liste {
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(min(var(--minWith), 100%), 1fr));
        padding: 0;
        list-style: none;

        & li {
            background: var(--bg-color-1);
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        & li::after {
            content: "";
            background-image: var(--img-of-game-or-movie);
            background-size: cover;
            background-repeat: no-repeat;
            position: absolute;
            width: 20px;
            height: 20px;
            top: 10px;
            right: 10px;
        }


        & h3 {
            text-align: center;
        }

        & p {
            /* font-size: 9pt; */
            text-align: center;
            max-width: 100%;
        }

    }

    & #anzahl-anzeige {
        font-weight: bold;
        color: #333;
    }



}
