.shopSliderImg {
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.shopNameTitle {
  background-color: #f7f7f7;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopNameTitle a {
  margin-left: 5px;
}

.shopNameTitle a img {
  width: 35px;
}

.shopNameTitle a img:hover {
  filter: brightness(0.8);
}

.reviewPercentLink:hover {
  cursor: pointer;
  text-decoration: underline;
}

.saveSellerLink:hover {
  cursor: pointer;
  text-decoration: underline;
}

.removeSeller i.fa-heart {
  color: #f7cd00;
}

.partTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 7px;
}

.partContent pre {
  font-size: 14px;
  white-space: break-spaces;
}

.searchContainer {
  position: absolute;
  right: 0px;
  width: 40%;
  top: -70px;
}

.catLinks {
  list-style: none;
  padding-left: 10px;
}

.catLinks li a {
  text-decoration: none;
  color: gray;
}

.catLinks li {
  margin-bottom: 10px;
}

.catLinks li a:hover,
.catLinks li a.active {
  color: blue;
}

@media (max-width: 540px) {
  .shopSliderImg {
    height: 300px;
  }

  .shopNameTitle {
    flex-direction: column;
  }
}
/* Stil für den grünen Sofortkaufen-Button */
.green {
    background-color: #28a745; /* Grüner Hintergrund */
    color: white; /* Weißer Text */
    border: none; /* Kein Rand */
    padding: 10px 20px; /* Innenabstand */
    text-align: center; /* Textzentrierung */
    text-decoration: none; /* Kein Unterstreichen */
    display: inline-block; /* Inline-Block-Anzeige */
    font-size: 16px; /* Schriftgröße */
    border-radius: 5px; /* Abgerundete Ecken */
    margin-top: 3px; /* Abstand nach oben */
}

.green:hover {
    background-color: #9fdfbf;
    color: white; /* Weißer Text */
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 600px) {
    .green {
        padding: 8px 16px; /* Kleinere Innenabstände */
        font-size: 14px; /* Kleinere Schriftgröße */
    }
}

@media (max-width: 400px) {
    .green {
        padding: 6px 12px; /* Noch kleinere Innenabstände */
        font-size: 12px; /* Noch kleinere Schriftgröße */
    }
}
