:root {
    --bubble-color: #FFFF00;
    --bubble-color-hover: #FFFF00;
    --bubble-outer-dot-color: rgba(255, 255, 0, 0.4);
    --bubble-inner-dot-color: rgba(255, 255, 0, 0.4);
}

.bubble {
  display: block;
  position: absolute;
  margin-right: 7rem;
  margin-top: 0.12rem;
  text-align: center; /* Ensure that content within is centered */
}

.bubble:hover:after {
  background-color: var(--bubble-color-hover);
}

.session-text {
    font-size: 14px;
    margin-bottom: 10px;
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    color: white;
    line-height: 1.4;
}

.bubble:after {
  content: "";
  background-color: var(--bubble-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the pseudo-element */
}

.bubble .bubble-outer-dot, .bubble .bubble-inner-dot, .bubble .bubble-inner-dot:after {
  display: block;
  position: relative;
  margin: auto; /* Centers the dot horizontally */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bubble-inner-dot-color);
  opacity: 1;
}

@keyframes bubble-pulse {
  0% {
    transform: scale(1);
    opacity: .75;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

#session-container {
    margin: auto;
    color: white;
    padding: 20px 0px;
    position: absolute;
    display: flex;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    text-align: center;
    justify-content: center;
}
