.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

#dropdown1_info {
  text-align: right;
}

#dropdown2_info {
  text-align: left;
}

#dropdown1_info img,
#dropdown2_info img {
  max-width: 125px;
  display: block;
  margin-bottom: 10px;
}

#dropdown1_info img {
  justify-self: right;
}

.produkt {
  width: 200px;
  min-height: 260px;
  background: whitesmoke;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.produkt:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.produkt p:nth-child(2) {
  font-weight: bold;
  font-size: 15px;
}

.produkt p:nth-child(3) {
  color: gray;
  font-size: 14px;
}

.produkt p:nth-child(4) {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: grey;
}

.compare-header {
  display: flex;
  justify-content: center;
  gap: 200px;
  font-weight: bold;
}

select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}