.customer-deliverycontent {
  margin-top: 0;
}

.customer-content h1 {
  margin-bottom: 2rem;
}

/* Formular */

.delivery-form {
  max-width: 1200px;
}

/* Adresskarte */

.delivery-address-card {
  margin-bottom: 1.5rem;
  margin-left: 0;
  border-radius: 12px;
  background: #fff;
}

.delivery-address-card h2 {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Grid */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Felder */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.full-width {
  display: grid;
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group select {
  padding: 0.9rem 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff0098;
}

/* Weitere Lieferadressen */

.delivery-address-buttons {
  width: calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.customer-deliverycontent .button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
}

.customer-deliverycontent .delivery-save-button,
.customer-deliverycontent .delivery-delete-button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;

  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
}

.customer-deliverycontent .delivery-save-button {
  background: #ff0098;
}

.customer-deliverycontent .delivery-delete-button {
  background: #6b7280;
}

.customer-deliverycontent .delivery-save-button svg,
.customer-deliverycontent .delivery-delete-button svg {
  display: block;
  flex-shrink: 0;
  color: #fff;
}

.customer-deliverycontent .delivery-save-button svg {
  width: 20px;
  height: 20px;
}

.customer-deliverycontent .delivery-delete-button svg {
  width: 18px;
  height: 18px;
}

#delivery-address-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

#delivery-address-list .delivery-address-card {
  margin-bottom: 0;
}

.add-address-field {
  width: 100%;
  min-height: 52px;
  margin-top: 1rem;
  padding: 0.8rem 1rem 0.9rem;

  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;

  display: flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 1rem;
  cursor: pointer;
}

.add-address-field:hover {
  border-color: #ff0098;
}

.add-address-field svg {
  width: 20px;
  height: 20px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ff0098;
  font-size: 1.8rem;
  font-weight: 600;
}