/* CONTENEDOR GENERAL */
.cbd-wrapper {
	max-width: 520px;
	margin: 40px auto;
	padding: 24px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* FILAS */
.cbd-row {
	width: 100%;
	margin-bottom: 18px;
}

/* CELDAS */
.cbd-cell {
	width: 100%;
}

/* LABELS */
.cbd-cell label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #222;
}

/* Igualar ancho y apariencia de select e input */
.cbd-cell input,
.cbd-cell select {
	width: 100%;
	box-sizing: border-box;
	height: 44px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 15px;
	background-color: #fff;
}

/* Ajuste específico para select (flecha incluida) */
.cbd-cell select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 40px; /* espacio para la flecha */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 18px;
}


/* TEXTO NORMAL */
.cbd-cell p {
	margin: 6px 0;
	font-size: 14px;
	color: #444;
}

/* RESULTADOS – ESTO ES LA MAGIA */
.cbd-cell p span {
	display: block;
	margin-top: 6px;
	padding: 14px;
	background: #f4f8f1;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	color: #2f6b1f;
}

/* OCULTAR */
.cbd-hide {
	display: none;
}

/* COPYRIGHT */
.cbd-wrapper .cbd-copyright {
	margin-top: 20px;
	font-size: 11px;
	color: #777;
	text-align: center;
}
/* Ocultar selector de Aplicación (human/pets) pero mantenerlo funcional */
#cbd-type {
	display: none !important;
}

/* Ocultar también su label */
label[for="cbd-type"] {
	display: none !important;
}
.cbd-title {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	color: #1f1f1f;
	text-align: center;
}

/* Selector */

.cbd-placeholder {
	font-size: 18px;
	color: #666;
	font-style: italic;
	margin-top: 12px;
}
.cbd-subcopy {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #666;
	line-height: 1.4;
}
.cbd-disclaimer {
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px dashed #e2e2e2;
}



/* ====== Campo email ====== */
.cbd-dosage input[type="email"]{
  width: 100% !important;
  padding: 12px 14px !important;
  border-radius: 10px !important;
  border: 1px solid #ddd !important;
  font-size: 15px !important;
}

/* ====== Botón enviar ====== */
.cbd-dosage input[type="submit"],
.cbd-dosage button {
  margin-top: 12px !important;
  padding: 14px 22px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  border: 0 !important;
  cursor: pointer !important;
  background: #111 !important;
  color: #fff !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}

.cbd-dosage input[type="submit"]:hover,
.cbd-dosage button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
}


