/* Modal Styles */
#productModal {
  position: fixed; 
  z-index: 100; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0, 0, 0, 0.8); 
}

.modal-content {
  background-color: #fefefe;
  margin: 10vh auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 80%; 
  max-width: 1100px; 
  height: 80vh;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#modalBody {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  height: 78vh;
  overflow-y: auto;
  justify-content: center;
}

#modalBody h2{
  width:100%;
}

.product-group {
  width: 300px;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
