.beitrag {
  clear: both;
  width: 100%;
  padding: 1ex;
  margin: 1.5em 0;
  background-color: white;
}
.beitrag header {
  font-size: inherit;
  font-weight: bold;
  line-height: 160%;
}
.beitrag ul {
  margin-left: 1em;
}
.beitrag p {
  padding: 0;
}
.beitrag h5 {
  font-size: inherit;
  font-weight: bold;
}
.beitrag button {
  float: right;
  text-align: center;
  margin: 0 0 0 1.5em;
}
.beitrag .pro,
.beitrag .contra {
  display: inline-block;
  padding: inherit;
  margin: 1em 1ex 0.5ex;
  width: calc(50% - 4ex - 0.2em);
  vertical-align: top;
}
.beitrag .pro {
  background-color: lightgreen;
  background-color: rgba(144, 238, 144, 0.5);
}
.beitrag .contra {
  background-color: salmon;
  background-color: rgba(250, 128, 120, 0.5);
}
.beitrag .antwort {
  background-color: silver;
  background-color: rgba(192, 192, 192, 0.5);
  padding: inherit;
  margin: 1ex 0 0 5em;
}
.beitrag .wertung div {
  display: inline-block;
  line-height: 16px;
  margin-right: 1.5em;
}
.beitrag .wertung div span {
  display: none;
}
.beitrag .wertung .v1::after,
.beitrag .wertung .v2::after,
.beitrag .wertung .v3::after,
.beitrag .wertung .v4::after,
.beitrag .wertung .v5::after {
  height: 16px;
  max-width: 80px;
  display: inline-block;
  background: url("star.png") rgba(150, 150, 150, 0.4);
  vertical-align: text-bottom;
  content: " ";
  margin-left: 1ex;
}
.beitrag .wertung .v1::after {
  width: 16px;
  margin-right: 64px;
}
.beitrag .wertung .v2::after {
  width: 32px;
  margin-right: 48px;
}
.beitrag .wertung .v3::after {
  width: 48px;
  margin-right: 32px;
}
.beitrag .wertung .v4::after {
  width: 64px;
  margin-right: 16px;
}
.beitrag .wertung .v5::after {
  width: 80px;
  margin-right: 0px;
}
.beitrag .details {
  border-top: 1px solid gray;
}
.beitrag .details > span {
  float: right;
  font-weight: bold;
  margin-top: 1ex;
}
#gÃ¤stebuch {
  margin-left: 2em;
  max-width: 700px;
}

.fehler {
  color: #b30000;
  background: #ffe6e6;
  border: 1px solid #cc0000;
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 4px;
  font-weight: 600;
}

/* category images */
.category-reisen {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 4px;
}
.category-card {
  text-align: center;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  transition: transform 0.3s;
}

.category-link {
  text-decoration: none;
  display: block;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-link:hover {
  color: #fff;
  background: darkred;
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.category-icon {
  width: 90px;
  height: 90px;
}

button.auswahl-review,
input.auswahl-review {
  background: #4eabf7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
button.auswahl-review:hover {
  background: #3b96de;
}

/* forms */
.main_content .form-wrap form {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main_content .form-wrap form input {
  width: 30% !important;
}

@media screen and (max-width: 450px) {
  .category-reisen {
    flex-direction: column;
    justify-content: space-around;
    gap: 13px;
  }
  .category-icon {
    width: 50%;
    height: 50%;
  }
  .main_content form input,
  .main_content form select,
  .main_content form textarea,
  .main_content .form-wrap form input {
    width: 100% !important;
  }
  button.auswahl-review {
    width: 100%;
  }
}
