/* ConsultDesk — Affiliation module front-end styles */
.cd-aff-actions { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.cd-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; }
.cd-dot-green  { background: #16a34a; }
.cd-dot-amber  { background: #d97706; }
.cd-dot-grey   { background: #9ca3af; }
.cd-dot-red    { background: #dc2626; }
.cd-dot--pulse { animation: cd-pulse 1.2s infinite; }
@keyframes cd-pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

.cd-points-summary { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cd-points-card { border: 1px solid #e5e7eb; border-radius: 8px; padding: 14px 18px; min-width: 160px; }
.cd-points-card--main { border-color: #0f4c5c; }
.cd-points-card__label { font-size: 11px; text-transform: uppercase; color: #6b7280; letter-spacing: .05em; }
.cd-points-card__value { font-size: 28px; font-weight: 700; color: #0f4c5c; }
.cd-points-card__sub   { font-size: 12px; color: #6b7280; }

.cd-pill.cd-pill--fake { background: #fee2e2; color: #991b1b; }

.cd-aff-overlay {
	position: fixed; inset: 0; z-index: 200000;
	background: rgba(15,23,33,.6); display: flex; align-items: center; justify-content: center;
}
.cd-aff-popup {
	background: #fff; border-radius: 10px; padding: 28px; max-width: 520px; width: 94%;
	max-height: 88vh; overflow-y: auto; position: relative;
}
.cd-aff-popup--lp { max-width: 640px; }
.cd-aff-popup__close {
	position: absolute; top: 12px; right: 14px; background: none; border: none;
	font-size: 1.6rem; cursor: pointer; color: #9ca3af;
}
