:root {
    --dl-primary: var(--extendify--color-primary, var(--wp--preset--color--primary, #b79c83));
    --dl-border-soft: rgba(0,0,0,0.06);
    --dl-radius-lg: 16px;
    --dl-shadow-soft: 0 12px 30px rgba(15,23,42,0.06);
}

/* Grundlayout */
.dlv-request { max-width: 960px; margin: 0 auto 3rem; }

/* Karten, Inputs, Buttons */
.dlv-card {
  background: #fff;
  border-radius: var(--dl-radius-lg);
  box-shadow: var(--dl-shadow-soft);
  border: 1px solid var(--dl-border-soft);
  padding: 1.4rem;
}
.dlv-card input, .dlv-card textarea {
  width: 100%; border: 1px solid #e5e7eb;
  border-radius: 999px; padding: 0.6rem 1rem;
  transition: 0.2s;
}
.dlv-card input:focus { border-color: var(--dl-primary); }

/* Buttons übernehmen Themefarbe */
.dlv-submit-row .button,
.dlv-thankyou .button {
  all: unset; cursor: pointer;
  background: var(--extendify--color-primary,#b79c83);
  color: #fff; padding: .6rem 1.8rem;
  border-radius: 999px; font-weight: 600;
}
.dlv-submit-row .button:hover,
.dlv-thankyou .button:hover { filter: brightness(1.1); }


.dlv-card input, .dlv-card textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
}

.dlv-card { margin-bottom: 1.5rem; }

.dlv-thankyou-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--dl-shadow-soft, 0 4px 20px rgba(0,0,0,0.06));
}

.dlv-cart-summary {
    margin-bottom: 1.8rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.dlv-cart-title {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #111827;
}

.dlv-cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.dlv-cart-table th,
.dlv-cart-table td {
    padding: 0.45rem 0.4rem;
}

.dlv-cart-table thead th {
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
}

.dlv-cart-table tbody tr:nth-child(every) {
    background: #fff;
}

.dlv-cart-table tfoot th {
    border-top: 1px solid #e5e7eb;
}

.dlv-right {
    text-align: right;
}




