/* Hauptcontainer */
.telekom-konfigurator-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

.konfigurator-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* Fortschrittsanzeige */
.konfigurator-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  padding: 0 10px;
}

.konfigurator-progress::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.progress-step {
  position: relative;
  z-index: 2;
  background-color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: #999;
  cursor: default;
}

.progress-step.active {
  color: #3498db;
  font-weight: bold;
}

.progress-step.completed {
  color: #2ecc71;
  cursor: pointer;
}

.progress-step.completed::before {
  content: "✓";
  margin-right: 5px;
}

/* Konfigurationsschritte */
.konfigurator-step {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.konfigurator-step h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  text-align: center;
}

/* Produktkarten */
.konfigurator-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.product-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card.selected {
  border-color: #3498db;
  background-color: #f0f8ff;
}

.product-header {
  margin-bottom: 15px;
}

.product-header h3 {
  margin: 0;
  color: #333;
  font-size: 18px;
}

.product-speed {
  color: #3498db;
  font-weight: bold;
  margin-top: 5px;
}

.product-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

/* Preisdarstellung */
.product-price {
  margin-bottom: 15px;
}

.monthly-price,
.one-time-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.monthly-price .price,
.one-time-price .price {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-right: 5px;
}

.monthly-price .price-period,
.one-time-price .price-period {
  font-size: 14px;
  color: #999;
}

.one-time-price {
  color: #e67e22;
}

.product-action {
  text-align: center;
}

.select-product {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.select-product:hover {
  background-color: #2980b9;
}

/* TV-Zusatzpakete */
.konfigurator-packages {
  margin-top: 30px;
}

.konfigurator-packages h3 {
  margin-bottom: 20px;
  color: #333;
  font-size: 20px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.package-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.package-card.selected {
  border-color: #3498db;
  background-color: #f0f8ff;
}

.package-header h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
}

.package-description {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
}

.package-price {
  margin-bottom: 10px;
}

.package-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.package-checkbox input {
  margin-right: 5px;
}

/* Adressformular */
.address-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.address-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fff;
}

/* Reparieren der Google Maps Autocomplete-Styles */
.pac-container {
  z-index: 1000000 !important;
  border-radius: 4px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  width: auto !important;
  min-width: 300px;
}

.pac-item {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  border-top: 1px solid #e6e6e6;
}

.pac-item:first-child {
  border-top: none;
}

.pac-item:hover {
  background-color: #f2f2f2;
}

.pac-icon {
  margin-right: 10px;
}

.pac-item-query {
  font-size: 14px;
  color: #333;
}

.pac-matched {
  font-weight: bold;
}

.pac-logo:after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 10px;
  background-position: center;
  background-size: 150px;
}

.description {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}

.check-availability-button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.check-availability-button:hover {
  background-color: #2980b9;
}

.billing-address-option {
  margin-top: 20px;
}

/* Verfügbarkeitsergebnisse */
.availability-results-container {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.availability-results-container h3 {
  margin-top: 0;
  color: #333;
}

.address-info {
  margin-bottom: 15px;
}

.available-speeds {
  margin-bottom: 20px;
}

.speeds-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.speeds-table th,
.speeds-table td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.speeds-table th {
  background-color: #f2f2f2

\
