.vergleich-header {
  background-color: #d6e8e9;
  padding: 20px;
}

.vergleich-form.flex-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.vergleich-form .input-field input,
.vergleich-form .kwh-number,
.vergleich-form .kwh-unit,
.vergleich-form .submit-field button {
  min-height: 50px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ccc;
}

.vergleich-form .input-field input {
  border-radius: 4px 0 0 4px;
  border-right: none;
  padding: 0 12px;
}

.vergleich-form .kwh-number {
  border-radius: 0;
  border-right: none;
  padding: 0 12px;
}

.vergleich-form .kwh-unit {
  background: #f1f1f1;
  border-radius: 0 4px 4px 0;
  padding: 0 10px;
  cursor: pointer;
  min-width: 80px;
  text-align: center;
}

img.custom-logo {
  max-height: 100px;
}

.vergleich-form .submit-field button {
  background-color: #355d5f;
  color: #fff;
  border-radius: 0 10px 10px 0;
  padding: 0 20px;
  cursor: pointer;
}

.vergleich-form .submit-field {
  align-self: flex-end;
}

.vergleich-form .kwh-unit {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 12px
}

.vergleich-form .submit-field button:hover {
  background-color: #274647;
}

/* Dropdown */
.kwh-field {
  position: relative;
}

.kwh-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 1000;
}

.kwh-dropdown div {
  padding: 8px 12px;
  cursor: pointer;
}

.kwh-dropdown div:hover {
  background: #f1f1f1;
}

/* Mobile */
@media (max-width: 600px) {
  .vergleich-form.flex-row {
    flex-wrap: wrap;
  }
  .vergleich-form .submit-field {
    flex: 1 1 100%;
    margin-top: 10px;
  }
  .vergleich-form .submit-field button {
    width: 100%;
    border-radius: 10px;
  }
}