.ce_ellipse {
  font-family: var(--pb-font-family-monospace);
  font-size: 1rem;
}
.ellipse-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.ellipse-form .form-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 300px;    /* sorgt für flexible Spalten */
  max-width: 400px;  /* verhindert zu breite Felder */
}

.ellipse-form .form-row label {
/*  font-weight: bold; */
  /* width: 150px; */
  margin-right: 0.5rem;
}

.ellipse-form .form-row input,
.ellipse-form .form-row select {
  flex: 0 1 auto;          /* nicht maximal breit */
    /* width: 150px;          Standardbreite */
  max-width: 200px;        /* Maximalbreite */
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}
.ellipse-form .form-row input {
  width: 80px;
}

.ellipse-form .form-actions {
  flex: 1 1 100%;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
  width: 100%;
}

.color-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 200px;
}

.color-cell label {
  min-width: 60px;
  font-weight: bold;
}
.color-cell input {
  width: 80px;
}

#helpPopup {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#helpContent {
  background: #fff;
  padding: 20px;
  max-width: 600px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}
