<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Preisbox */
.pricing-box {
    background: white;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease-in-out;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Flex-Container fÃ¼r Zahleneingabe &amp; Slider */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.input-container label {
  font-size: 1.5rem; /* BeispielgrÃ¶ÃŸe, anpassbar */
}

.input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center; /* optional fÃ¼r zentrierte Ausrichtung */
  margin-bottom: 10px;
}

.input-container label {
  font-weight: bold;
}

.input-container input[type="number"] {
  width: 70px;
  padding: 5px;
  text-align: center;
}

.slider-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.slider-wrapper input[type="range"] {
  width: 100%;
  max-width: 300px;
}


/* Eingabefeld Styling */
input[type="number"] {
    width: 60px;
    text-align: center;
    font-size: 1rem;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


input[type="range"] {
    width: 100%;
    margin-top: 5px;
}

/* Gesamtpreis */
.preis-value {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}


.pricing-title {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 5px;
}


.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

</pre></body></html>