.textfeld-panel {
    padding: 15px 10px;
}

.textfeld-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.textfeld-color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.textfeld-color-dot.selected {
  border-color: white;
  transform: scale(1.2);
}

.textfeld-eingabe-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f72;
  margin-bottom: 6px;
  margin-top: 10px;
}

#textfeld-eingabe {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  border-radius: 8px;
  border: 1.5px solid #D9D0C4;
  font-family: inherit;
}

.textfeld-add-btn {
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  background: #486959;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}

.textfeld-add-btn-inaktiv {
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  background: #486959;
  opacity: 0.4;
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
}

.textfeld-add-btn:hover {
  background: #3a5547;
}

.textfeld-widget-inhalt {
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}