/* Reset default margin and padding */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3f3f3; /* Similar to Amazon's background color */
  color: #333; /* Amazon's text color */
}

/* Your existing CSS */

h1.main-title {
  font-size: 96px;
  text-align: center; /* Center the text */
}

/* Styling for search container */
.search-container {
  text-align: center;
  margin: 20px 0;
}

input.search-box {
  width: 500dpx;
  padding: 30px;
  font-size: 48px;
  border: 3px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the items */
}

li {
  border: 1px solid #ddd;
  padding: 20px;
  width: calc(50% - 20px); /* Set width for two items per row */
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff; /* White background for product listings */
}

.product-image {
  max-width: 100%;
  height: auto;
  max-height: 200px; /* Slightly increased image size */
  object-fit: contain;
}

.green-mark {
  color: green;
  font-weight: bold; /* Making the green mark bold */
}

.red-mark {
  color: red;
  font-weight: bold; /* Making the red mark bold */
}

@media (max-width: 768px) {
  li {
    width: calc(50% - 20px); /* Adjusted width for smaller screens */
  }
}
