#claire-chat-icon-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000; /* Ensure it is above other elements */
}

#claire-chat-icon {
  width: 70px;
  height: 70px;
  cursor: pointer;
  background: none;
  /* background-color: #fff;  Green color */
  /* border-radius: 12px;  Makes it a circle */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);  Shadow around the circle */
}

#claire-chat-container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 600px;
  max-height: 80vh;
  margin: 40px;
  border: none;
  display: none;
  /* background-color: aquamarine; */
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow around the circle */
  border-radius: 12px;
  overflow: hidden;
}

#claire-iframe-container {
  height: calc(100% - 48px);
  width: 100%;
}

#claire-iframe {
  border: none;
  height: 100%;
  width: 100%;
}

.claire-navbar {
  background-color: #2ab48a;
  color: #ffffff;
  padding: 0px 10px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 12px 12px 0 0;
}

.claire-navbar-title {
  font-size: 15px;
}

.claire-icon-container {
  display: flex;
  gap: 15px;
}

.claire-icon {
  width: 15px;
  height: 15px;
  cursor: pointer;
  fill: #ffffff;
}

.claire-popover {
  position: absolute;
  top: 50%;
  right: 80px; /* place it to the left of the icon */
  transform: translateY(-50%) translateX(10px);
  background: #fff;
  color: #003469;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Optional small arrow */
.claire-popover::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #fff;
}