/* Foodbalance Core — Área de cliente "Mi Seguimiento" */
:root { --fb-primary: var(--primary_color, #C2185B); --fb-success: #1D9E75; }

.fb-seg h3 { margin: 28px 0 14px; }
.fb-help { color: #718096; font-size: 0.9rem; margin: 0 0 14px; }

.fb-seg-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 16px;
}

/* Formulario de nuevo registro */
.fb-reg-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 12px;
}
@media (min-width: 600px) { .fb-reg-grid { grid-template-columns: repeat(3, 1fr); } }
.fb-reg-field { display: flex; flex-direction: column; }
.fb-reg-field label,
.fb-reg-label { font-size: 0.82rem; font-weight: 700; color: #2d3748; margin-bottom: 6px; display: block; }
.fb-reg-field input,
.fb-seg textarea#fb-nota {
	width: 100%;
	height: 46px;
	border: 1px solid #cbd5e0;
	border-radius: 6px;
	padding: 0 12px;
	box-sizing: border-box;
}
.fb-seg textarea#fb-nota { height: auto; padding: 10px 12px; margin-bottom: 12px; }
.fb-reg-btn { background: var(--fb-success) !important; color: #fff !important; border: none !important; }
.fb-reg-msg { font-size: 0.85rem; margin: 8px 0 0; min-height: 1em; }
.fb-reg-msg.ok { color: var(--fb-success); }
.fb-reg-msg.err { color: #c0392b; }

/* Comentarios del nutricionista */
.fb-comment .fb-comment-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}
.fb-cal-badge {
	background: #fef3e2;
	color: #b7791f;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 12px;
}
.fb-comment p { margin: 0; }

/* Info / menú */
.fb-info {
	background: #ebf8ff;
	border: 1px solid #bee3f8;
	color: #2c5282;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 14px;
	font-size: 0.9rem;
}
.fb-menu-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px;
}
.fb-menu-grid li {
	background: #f7fafc;
	border: 1px solid #edf2f7;
	border-radius: 6px;
	padding: 10px 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fb-qty-badge {
	background: var(--fb-primary);
	color: #fff;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
}

/* Listado de registros del cliente */
.fb-reg-list { list-style: none; padding: 0; margin: 0; }
.fb-reg-list li {
	background: #f9fafb;
	border-left: 4px solid var(--fb-success);
	border-radius: 0 6px 6px 0;
	padding: 10px 14px;
	margin-bottom: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	align-items: baseline;
}
.fb-reg-date { font-weight: 700; color: #2d3748; min-width: 90px; }
.fb-reg-data { color: #1D9E75; font-weight: 600; }
.fb-reg-note { flex: 1 1 100%; color: #4a5568; font-style: italic; }

.fb-muted { color: #a0aec0; font-style: italic; }
