body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

div {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 18px;
}
.detailwrap{border-bottom: 1px solid #000; }

/* Modal CSS */
.newproductover {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

.newproductover .content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.newproductover .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.newproductover .close:hover,
.newproductover .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.newproductover .sizeOptionRow {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.newproductover .sizeOptionRow label {
  margin-right: 10px;
}

.newproductover .sizeOptionRow input {
  margin-right: 10px;
}

.newproductover .sizeOptionRow .remove {
  margin-left: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
}
/* Style for the pop-up overlay */
.editproductover {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.editproductover .content {
  background-color: #fefefe;
  margin: 5% auto; /* Centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  display: flex;
  flex-direction: column;
}

.editproductover .edit-product-container {
  display: flex;
  justify-content: space-between;
}

.editproductover .product-details {
  width: 45%;
}

.editproductover .product-image-section {
  width: 45%;
  text-align: center;
}

.editproductover .close-edit {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.editproductover .close-edit:hover,
.editproductover .close-edit:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.product-image {

}
