/* TTV Reisekosten – Basic Styles */
.ttv-form { max-width: 1080px }
.ttv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ttv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.ttv-section { padding: 12px; border: 1px solid #eee; border-radius: 10px; margin-bottom: 16px; background: #fafafa; }
.ttv-section > h2 { margin: 0 0 10px; font-size: 1.25rem; }

.ttv-field input,
.ttv-field button,
.ttv-field select {
  width: 100%;
  padding: 8px !important;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  box-sizing: border-box;
}
.ttv-field textarea {
  width: 100%;
  min-height: 88px;          /* Textarea höher, aber konsistent */
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-sizing: border-box;
}
.ttv-field input::placeholder, .ttv-field textarea::placeholder { color: #888; }

.ttv-btn { font-size: 1.2em; font-weight: bold; background: #b41e1e; color: #fff; border: none; padding: 12px 16px; border-radius: 5px; cursor: pointer; height: 44px; max-width: 200px;}
.ttv-btn:hover { opacity: .95; }

.ttv-stammdaten { background: #f6f9ff; border: 1px solid #e5edff; border-radius: 5px; padding: 8px; margin-bottom: 16px; }
.ttv-stammdaten h4 { margin: 0 0 8px; }

.ttv-label { display:block; margin-bottom:6px; font-size: .95rem; color:#333; }

/* Essenspauschale – eine Zeile */
.ttv-meals-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}
.ttv-meal { display: inline-flex; align-items: center; gap: 8px; }

