.sterne-container {
  display: flex;
  justify-content: center;
  font-size: 30px;
  color: #ffd700;
  cursor: pointer;
}

.stern {
  margin: 0 5px;
}

.stern:hover,
.stern.ausgewaehlt {
  color: #ff8c00;
}

.formular-container {
  margin-top: 20px;
  text-align: center;
}

#bewertungsformular input,
#bewertungsformular textarea {
  display: block;
  width: 300px;
  margin: 10px auto;
  padding: 5px;
}

#bewertungsformular button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}



.star-rating .star {
  cursor: pointer;
  color: grey;
  font-size: 30px;
}

.star-rating .star:hover,
.star-rating .star:hover~.star {
  color: gold;
}



/* Form container */
#rating-system {
  width: 50%;
  margin: 30px auto 50px;
  /* Center the form horizontally */
  padding: 20px;
  /* Add some padding around the form */
  border: 1px solid #ccc;
  /* Add a border for visual separation */
  border-radius: 5px;
  /* Add a slight border radius for a softer look */
}

/* Form elements */
#rating-form input[type="text"],
#rating-form input[type="email"],
#rating-form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  /* Include padding and border in the element's total width */
}

/* Star rating */
.star-rating {
  text-align: center;
  /* Center the stars */
  font-size: 0;
  /* Remove white space between inline-block elements */
}

.star-rating .star {
  display: inline-block;
  font-size: 30px;
  color: grey;
  cursor: pointer;
  margin: 0 5px;
  /* Add some space between stars */
}

/* Highlight selected stars */
.star-rating .star:hover,
.star-rating .star:hover~.star {
  color: gold;
}

.print-content {
  text-align: center;
  margin-top: 20px;
}

.print-heading {
  font-size: 24px;
  margin-bottom: 20px;
}

.print-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
}

.print-cell {
  padding: 20px;
}

.company-logo,
.qr-code {
  max-width: 200px;
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
  background: #f9f9f9;
}

.notice {
  display: none !important;
}

.print-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0073aa;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
}

.print-button:hover {
  background-color: #005a8c;
}

@media print {
  .notice {
    display: none !important;
  }

  body * {
    visibility: hidden;
  }

  .print-content,
  .print-content * {
    visibility: visible;
  }

  .print-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .print-button {
    display: none;
  }
}