.cartItem {
    width: 80%;
    margin: auto;
    display: flex;
    padding: 20px;
    border: 2px solid #ccc;
}
.cartItem img {
    width: 200px;
    height: 200px;
    margin-right: 20px;
    border: 2px solid #ccc;
}
.cartItemDetails p{
    margin: 5px 0;
}
.cartItemDetails h3{
    text-align: left;
    font-size: 32px;
    
}
.USDprice {
    color: rgb(96, 96, 96);
    text-align: left;
    margin-top: 5px;
}
.diamondPrice {
    color: #1ebbd3;
    text-align: left;
    margin-top: 2px;
}
.quantity {
    color: grey;
    text-align: left;
}

/* Items you May Like */
#moreItems {
    width: 80%;
    margin: auto;
    display: flex;
    flex-flow: nowrap;
}
.moreItemsItem {
    border: 2px solid #ccc;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    margin: 10px;
}

.moreItemsItem img {
    width: 200px;
    height: 200px;
}

h3 {
    text-align: center;
    font-size: 26px;
    margin: 5px 0;
}
#moreItems {
    display: flex;
    flex-wrap: nowrap;
    width: 80%;
    margin: 10px auto;
}
.viewItemPageButton {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: #35b0aa;
    border: 2px solid #35b0aa;
}
.viewItemPageButton:hover {
    cursor: pointer;
    background-color: #dbe7e8;
}
.addToCartButton {
    background-color: #35b0aa;
    margin: 10px 0;
    padding: 10px;
    width: 80%;
    text-align: center;
    border-radius: 2px;
    color: white;
    border: 2px solid #308da0;

}
.addToCartButton:hover {
    cursor: pointer;
    background-color: #308da0;
}