/**
 * DONE Floor Visual View — frontend viewer styles.
 * Bubble tooltip matches Hönig brand (Figma: brand-primary-green bubble).
 */

.dfvv-viewer {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  line-height: 0;
}
.dfvv-viewer.dfvv-viewer--sized {
  overflow: hidden;
}
.dfvv-viewer-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.dfvv-viewer.dfvv-viewer--sized .dfvv-viewer-svg {
  height: 100%;
}

.dfvv-vtip {
  position: absolute;
  display: none;
  background: #315442;
  border: none;
  color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 24px;
  z-index: 50;
  pointer-events: none;
  box-shadow: none;
}
.dfvv-vtip.dfvv-vtip-click {
  pointer-events: auto;
  cursor: pointer;
}
.dfvv-vtip-t {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.dfvv-vtip-b,
.dfvv-vtip-row {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}
.dfvv-vtip-fl {
  font-weight: 400;
}
.dfvv-vtip-fv {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dfvv-vtip-fv-core {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dfvv-vtip-fx {
  font-weight: 400;
  letter-spacing: 0;
}
.dfvv-vtip-link {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #f3e5cf;
  pointer-events: none;
}
