.cdeis-group {
  margin-bottom: 2.5em;
  padding: 1.2em 1em 1em 1em;
  background: #f8fafc;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  border: 1px solid #e3e8ee;
  position: relative;
}
.cdeis-group .group-title {
  font-size: 1.15em;
  font-weight: bold;
  color: #226;
  margin-bottom: 0.7em;
  background: #eaf2fb;
  padding: 0.3em 0.8em;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.option-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.cdeis-param-row {
  display: block;
  margin-bottom: 1em;
}
.cdeis-param-label {
  min-width: 170px;
  font-size: 1.08em;
  color: #155a8a;
  margin-bottom: 0.3em;
  font-weight: bold;
  display: block;
}
.cdeis-btn {
  margin: 0 0.3em 0.3em 0;
  padding: 0.25em 0.8em;
  border-radius: 5px;
  border: 1px solid #bcd;
  background: #f4f8fb;
  cursor: pointer;
  font-size: 0.98em;
  transition: background 0.2s, border 0.2s;
  min-width: 50px;
  text-align: center;
}
.cdeis-btn.active {
  background: #b6e0fe;
  border-color: #3399cc;
  font-weight: bold;
  color: #155a8a;
}
.no-explored-btn {
  display: inline-block;
  align-self: flex-start;
  width: auto;
  min-width: 0;
  background: #ffe6e6;
  color: #a33;
  border: 1px solid #e3bcbc;
  margin-bottom: 0.7em;
  margin-right: 1em;
  font-weight: bold;
  padding: 0.25em 1em;
  box-sizing: border-box;
}
.no-explored-btn.active {
  background: #ffb3b3;
  color: #fff;
  border-color: #a33;
}
.resultado-cdeis {
  background: #f4f4f4;
  color: #222;
  font-size: 1.3em;
  font-weight: 500;
  text-align: center;
  border-radius: 8px;
  padding: 1em 0.5em;
  margin: 1.5em auto 1em auto;
  max-width: 400px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
}
/* Estilo para inputs numéricos del CDEIS igual que CDAI */
.cdeis-input {
  width: 50px;
  height: 35px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  padding: 5px;
  box-sizing: border-box;
}

.cdeis-input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}


/* Eliminar flechas de los inputs numéricos */
input[type="number"].cdeis-input {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type="number"].cdeis-input::-webkit-outer-spin-button,
input[type="number"].cdeis-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"].cdeis-input::-moz-outer-spin-button,
input[type="number"].cdeis-input::-moz-inner-spin-button {
  -moz-appearance: none;
  margin: 0;
}
.cdeis-stenosis-section {
  margin: 2em 0 1em 0;
  text-align: center;
}
.cdeis-stenosis-title {
  font-weight: bold;
  color: #155a8a;
  margin-bottom: 0.7em;
  font-size: 1.08em;
}
.cdeis-checkbox-label {
  display: inline-flex;
  align-items: center;
  margin: 0 1.5em 0 0;
  font-size: 1.08em;
  cursor: pointer;
  user-select: none;
}
.cdeis-checkbox {
  width: 1.4em;
  height: 1.4em;
  accent-color: #3399cc;
  margin-right: 0.5em;
  border-radius: 4px;
  border: 2px solid #3399cc;
  cursor: pointer;
}