#moscot {
    position: fixed;
    display: none;
    left: 0;
    top: 0;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 12;
    width: 7%;
  }

  .speech-bubble {
    position: fixed;
    background: white;
    border: 2px solid #888;
    border-radius: 12px;
    padding: 8px 12px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    max-width: 200px;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 11;
    pointer-events: none;
  }

  .speech-bubble.arrow-bottom::after {
    content: '';
    position: fixed;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: white;
  }

  .speech-bubble.arrow-top::after {
    content: '';
    position: fixed;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: white;
  }