.overview {
    background-color: white;
    grid-template-rows: auto 1fr;
    height: 100%;
    box-sizing: border-box;
}
    .overview__header {
        width: 100%;
        padding-bottom: 1rem;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

        .overview__title {
            color: #DF7843;
            padding: 1rem;
            font-size: 30px;
            text-align: center;
            font-weight: bold;
        }

        .overview__subtitle, .overview__message {
            color: #000000;
            font-size: 18px;
            text-align: center;
            font-weight: bold;
        }

    .overview__models {
        display: grid;
        grid-gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        grid-auto-rows: max-content;
        align-items: start;
        width: 100%;
        padding: 3rem;
        /* justify-self: center; */
        overflow-y: scroll;
    }

    .overview__item {
        display: grid;
        text-align: center;
        height: 100%;
        color: black;
        cursor: pointer;
        padding-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .overview__item:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .overview__item-thumbnail {
            background-color: white; /* Used if the image is unavailable */
            padding: 25px 30px;
            height: 250px;
        }

        .overview__item-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .overview__item-description {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0 20px;
        }

            .overview__item-ean, .overview__item-name span {
                color: #aaaaaa;
                font-size: 12px;
                padding-right: 8px;
            }

            .overview__item-ean {
                font-size: 12px;
                margin-bottom: 4px;
                display: flex;
            }

            .overview__item-ean span {
                padding-right: 40px;
            }

            .overview__item-name {
                text-align: start;
                font-size: 14px;
                display: flex;
                justify-content: space-between;
            }

    .overview__download-button {
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: white;
        border: 2px solid #DF7843;
        border-radius: 10px;
        padding: 5px 15px;
        margin-right: 15px;
        margin-bottom: 25px;
        width: max-content;
        text-transform: uppercase;
        color: white;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        cursor: pointer;

    }

    .overview__download-button:hover {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }
