 body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f5f5f5;
}

h1, h2 {
  margin: 0;
}

.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.result-section {
  text-align: left;
  margin: 10px;
}

img {
  max-width: 300px;
  height: auto;
  cursor: pointer;
}

button {
  cursor: pointer;
}

#view-results {
  margin: 20px;
}

.footer {
  margin: 20px;
  text-align: center;
}

.lower-right {
  position: relative;
}

.chart {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
} 
