#coin-calculator {
  flex: 1;
}

#coin-calculator h2 {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

#coin-calculator .hint {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 25px;
}

.field {
  margin-bottom: 16px;
  color: black;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

input,
select {
  width: 100%;
  padding: 12px 10px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  outline: none;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  background: #ff2f92;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #ff5aaa;
}

/* Ergebnis-Box */
#coin-result {
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

#coin-result p {
    color: #ffffff; /* oder eine andere sichtbare Farbe auf dunklem Hintergrund */
    font-size: 1.2em;
    text-align: center;
}


#coin-result strong {
  font-size: 18px;
}

.admin-field{
	color: #ffffff;
}