/* warenkorb.css – Stylishe Darstellung für den Warenkorb */

/* Der gesamte Inhalt wird in einer Box dargestellt */
.warenkorb-container {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Überschriften innerhalb der Box */
.warenkorb-container h2 {
  font-size: 24px;
  color: #007c40;
  border-bottom: 2px solid #00a052;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* Tabellenstile für die Bestellhistorie */
.warenkorb-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.warenkorb-container table th,
.warenkorb-container table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  font-size: 16px;
}

.warenkorb-container table th {
  background-color: #f0f0f0;
  color: #333;
}

/* Abstand und Formatierung der einzelnen Sektionen */
.warenkorb-container .address-container,
.warenkorb-container #order-history-section,
.warenkorb-container #payment-address-section,
.warenkorb-container #cart-products-section,
.warenkorb-container #checkout-section {
  margin-bottom: 30px;
}

/* Zusätzliche Formatierung der Buttons innerhalb der Box */
.warenkorb-container .btn {
  margin-top: 10px;
}
