@media (max-width: 1024px) {
    .productoverview {
        display: grid;
        grid-template-columns: repeat(1, 1fr);;

    }

    .item {
        display: inline-block;
        width: 95%;
        height: 200px;
        margin-left: 5px;
        margin-bottom: 10px;
        padding: 5px;
        overflow: hidden;
        border: 2px solid #000;
        border-radius: 10px;
        z-index: 1;
    }
    .iteminfo {
        display: inline-block;
        width: 100%;
        height: 100%;
        margin: 10px;
    }
    .productdiv {
        position: inline-block;
        vertical-align: left;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px;
    }
    .product_data {
        width: 100%;
        margin-left: 10px;
        margin-right: 50px;
        vertical-align: top;

    }


    #product_image {
    padding: 0;
    width: 100px;
    height: 100px;
    margin-right: 10px;
    float: left;
    overflow: hidden;
    border: 1px solid #000;
    }
    #product_description {
        margin-right: 50px;
        height: 80%
        font-size: 20px;
    }
    #product_price {
        float: right;
        margin-right: 50px;
    }

    .shoppingcart_add {
        display: flex;
        height: 30px;
        width: 60px;
    }
    .btn_add {
        display: flex;
        width: 200 !important;
        padding: 0;
        z-index: 2;
        color: var(--royal-blue);
        font-weight: bold;
        background: white;
    }
    .productinfo {
        display: block;
        width: 100%;
        height: 100%;
        padding: 10px;
        overflow: auto;

    }

    .adminpanel {
        display: block;
        background: var(--housestyle-green);
    }
}
