.master-tooltip {
  position: fixed;
  z-index: 10000;
  width: max-content;
  max-width: min(300px, calc(100vw - 24px));
  padding: 12px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.master-tooltip__label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.master-tooltip__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.master-tooltip__status::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.master-tooltip[data-state="included"] .master-tooltip__status { color: var(--green); }
.master-tooltip[data-state="excluded"] .master-tooltip__status { color: var(--danger); }
.master-tooltip[data-state="loading"] .master-tooltip__status { color: var(--muted); }
html[data-theme="light"] .master-tooltip[data-state="included"] .master-tooltip__status { color: #147841; }
html[data-theme="light"] .master-tooltip[data-state="excluded"] .master-tooltip__status { color: #b62f40; }
