/* ─── Add-meetings door ───────────────────────────────────────── */
.meet-door { margin: 14px 0 24px; }
.meet-door--glyph button {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: none; padding: 6px 2px;
  font-family: inherit; font-size: var(--text-sm); font-weight: 500;
  color: var(--text-warm); cursor: pointer;
}
.meet-door--glyph button:hover { color: var(--text-mid); }
.meet-door--glyph svg { color: var(--text-muted); }

/* ─── Meeting panel ───────────────────────────────────────────── */
.meet-panel--inline {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px; margin: 14px 0 24px;
}
.meet-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.meet-panel__title {
  font-size: var(--text-sm); font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.meet-panel__title svg { color: var(--amber-dark); }
.meet-panel__close {
  background: none; border: none; font-size: 20px; line-height: 1;
  color: var(--text-muted); cursor: pointer; padding: 0 4px;
}

/* ─── Review list ─────────────────────────────────────────────── */
.meet-list { list-style: none; padding: 0; margin: 0 0 4px; }
.meet-row {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 10px 0; border-bottom: 1px solid var(--border-subtle);
}
.meet-row__dot {
  width: 9px; height: 9px; border-radius: var(--radius-full);
  background: var(--tint); outline: 1.5px solid var(--border); flex: 0 0 auto;
}
.meet-row__title { flex: 1; min-width: 0; font-size: var(--text-base); }
.meet-row__remove, .meet-row__remove button {
  background: none; border: none; color: var(--text-muted);
  font-size: 18px; line-height: 1; cursor: pointer; padding: 0 4px;
}

/* ─── Input row + amber add button ────────────────────────────── */
.meet-field-wrap { margin-top: 12px; }
.meet-field-input { position: relative; }
.meet-field {
  width: 100%; background: var(--surface);
  border: 1.5px solid var(--amber); box-shadow: 0 0 0 3px var(--amber-ring);
  border-radius: var(--radius-lg); padding: 14px 58px 14px 16px;
  font-family: inherit; font-size: var(--text-base); color: var(--text);
}
.meet-field:focus { outline: none; }
.meet-field__add {
  position: absolute; right: 9px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; border-radius: var(--radius-md);
  background: var(--amber); color: var(--surface); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.meet-field__add:disabled { background: var(--tint); color: var(--text-faint); cursor: default; }

/* ─── Hint + Done ─────────────────────────────────────────────── */
.meet-hint {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: var(--text-2xs); color: var(--text-muted); margin-top: 8px;
}
.meet-hint__plus { font-weight: 700; }
.meet-done {
  width: 100%; margin-top: 14px; border: none; border-radius: var(--radius-md);
  background: var(--text); color: var(--bg); padding: 12px;
  font-family: inherit; font-size: var(--text-sm); font-weight: 600; cursor: pointer;
}
