/* Add Product Form */
#addProductForm {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgb(194, 194, 194);
  height: 90vh;
  display: flex;
  flex-direction: column;
  padding: px 450px;
  width: 90%;
  margin: auto;
}

#addProductForm input,
#addProductForm select {
  width: 98%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#addProductForm button {
  background: #d2691e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#addProductForm button:hover {
  background: #8b4513;
}

#addProductForm img {
  width: 100px;
}
#addProductForm a {
  width: 90px;
}
#addProductForm input {
  width: 97%;
}



 #imgbutton{
  background-color: #d2691e;
  cursor: pointer;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}


#imgbutton:hover{
  background-color: #a75419;

}
#imgbutton:focus{
  background-color: #884616;

}

#imagesCantainer{
  position: fixed;
  width: 98%;
  height: 95vh;
  z-index: 444;
  border: 2px solid black;
  background-color: white;
  display: none;
  flex-wrap: wrap;
  overflow-y: scroll;
  justify-content: start;

}

#imagesCantainer img{
  min-width: 200px;
  height: 200px;
}
#imagesCantainer img:hover{
  background-color: rgb(216, 208, 208);
}

