body {
  font-family: sans-serif;
  position: relative;
  padding: 40px;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.4); */
  z-index: 9999;
}
#overlay.hidden {
  display: none;
}

/* Spotlight circle */
#spotlight {
  position: absolute;
  border: 2px solid; /* #fff */
  /* border-radius: 50%; */
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* Tooltip bubble */
#tooltip {
  position: absolute;
  background: #fff;
  color: #333;
  padding: 12px;
  max-width: 250px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
}
#tooltip::after {
  content: "";
  position: absolute;
  border: 8px solid transparent;
  border-top-color: #fff;
  /* left: 20px; */
  z-index: 9999;
}

.tooltip-left {
  text-align: right;
}

.tooltip-right {
  text-align: left;
}

.tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  /* left: 20px; */
  border-width: 8px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  top: -16px;
  transform: rotate(180deg);
  z-index: 9999;
}

.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  /* left: 20px; */
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
  bottom: -16px;
  z-index: 9999;
}
.tooltip-left::after {
  right: 20px;
}
.tooltip-right::after {
  left: 20px;
}

/* Controls */
.controls {
  margin-top: 8px;
  text-align: right;
  display: flex;
  align-items: center;
  text-wrap-mode: nowrap;
  justify-content: space-around;
  z-index: 9999;
}
.controls button {
  margin-left: 5px;
  font-family: "Open Sans", sans-serif;
  padding: 4px 8px;
  cursor: pointer;
  z-index: 9999;
}

#tooltip-text {
  word-break: break-word;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #222;
  font-family: "Open Sans", sans-serif;
  z-index: 9999;
}

#skip-btn {
  opacity: 50%;
  z-index: 9999;
}

#skip-btn,
#prev-btn {
  color: #434343;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  z-index: 9999;
}

#next-btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #00b1cd;
  font-family: "Open Sans", sans-serif;
  z-index: 9999;
}
