/*
 * LIVEROK — définitions en place, explication à la demande, et le pont « mes lieux ».
 *
 * Un mot explicable doit se remarquer sans crier : un soulignement pointillé, rien de plus. Une pastille « ? » à
 * côté de chaque nom transformerait l'écran en mode d'emploi, ce qui est exactement l'effet qu'on cherche à éviter.
 */

.lr-intro {
  margin: 6px 0 0;
  font-size: .88rem;
  line-height: 1.5;
  opacity: .88;
  max-width: 46em;
}

[data-term] {
  font-weight: 600;
  cursor: help;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
}

[data-term]:hover,
[data-term]:focus-visible { border-bottom-style: solid; }

.lr-term-bubble {
  position: absolute;
  z-index: 2600;
  padding: 13px 34px 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 51, 45, .18);
}

.lr-term-bubble[hidden] { display: none !important; }
.lr-term-bubble strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.lr-term-bubble p { margin: 0; font-size: .86rem; line-height: 1.5; }

/* L'exemple porte plus que la définition : il est mis en avant, pas relégué. */
.lr-term-example {
  margin-top: 7px !important;
  padding-top: 7px;
  border-top: 1px solid rgba(15, 23, 42, .10);
  font-style: italic;
  opacity: .85;
}

.lr-term-close {
  position: absolute;
  top: 6px; right: 6px;
  width: 26px; height: 26px;
  border: 0; border-radius: 8px;
  background: none;
  font-size: 17px; line-height: 1;
  cursor: pointer;
  opacity: .6;
}

/* ——— Le pont « mes lieux », au moment où l'on remplit l'adresse ——————————————————————————— */

.lr-myplaces {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 8px 0 4px;
}

.lr-myplaces-label { font-size: .82rem; opacity: .8; }

.lr-myplace {
  padding: 8px 13px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .18);
  background: #fff;
  font-size: .84rem;
  cursor: pointer;
}

.lr-myplace:hover { border-color: rgba(226, 102, 31, .55); }
