﻿body {
}

.productcard {
    border-radius: 15px;
    padding: 5px;
    background-color: #CFCFCF;
}

    .productcard a {
        color: black;
        text-decoration:none;
    }

    .productcard p {
        margin:5px;
    }

    .productcard .productprice {
        font-weight: bold;
    }

    .catalogholder {
        margin-right: 10px;
    }

    .catalogholder a {
        color: black;
        text-decoration: none;
    }

    .catalogholder p {
    }

    .catalogholder li {
        list-style-type: none;
    }

    .catalogholder ul {
        list-style-type: none;
    }


#productdetailscontainer {
    /*background-color: lightgreen;*/
    display: flex;
    justify-content:space-between;
}

.productdetails {
    font-size:larger;
}

.productdetailspictures {
    background-color: cornflowerblue;
    flex-wrap: wrap;
    display: flex;
    justify-content: right;
    align-items: stretch;
   
    align-content: flex-start;
    /*display: flex;
    
    justify-content: center;
    flex-basis:400px;*/
}

.pictureholder{
    width:200px;
}

.productdescriptionfooter{
    display:flex;
}

.productdescriptionfooter p {
    display:inline-block;
    margin: 0 10px 0 0;
}

#createproductform {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#createproductform  p{
    margin:0px;
}

#createproductformdescriptionholder {
    margin:0 20px 0 20px;
   /* background-color: cornflowerblue;*/
    flex-grow: 1;
    min-height: calc(100vh - 250px);
    display:flex;
    flex-direction:column;
}

    #createproductformdescriptionholder textarea {
        min-width:400px;
        height: 100%;
        resize: none;
        flex-grow: 1;
    }