.alertbadgecali {
    height: 20px !important;
    width: 20px !important;
    display: block;
    position: fixed;
    top: 1px;
    background: red;
    border-radius: 50%;
    text-align: center;
    left: 58px;
    font-weight: 700;
    color: #ffffff;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #0000001a;
}

.ask-cali-bubble {
    height: 75px;
    width: 275px;
    /* position: absolute; */
    position: fixed;
    background-color: rgba(254,243,126,1);
    bottom: 46px;
    border-radius: 10px;
    right: 115px;
    text-align: left;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: default;
    z-index: 9999;
    color: var(--logoblue);
    animation: textboxincali 1s ease-in 0s 1 normal none;
    box-shadow: 0px 0px 24px 3px rgba(0,0,0,0.32);
    user-select: none; /* Standard */
}

#close-bubble-btn {
    float: right;
    display: inline-block;
    padding: 2px 5px;
    background: transparent;
    margin-top: -10px;
    margin-left: 6px;
    cursor: pointer;
    font-size: 12px;
    width: 5px;
}

#close-button {
    cursor: pointer !important;
}

#ask-cali-message {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
}

.ask-cali-message p {
  font-weight: 500;
  color: #000;
}

#ask-cali-message.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


  

@keyframes textboxincali {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.4);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}
  
@media screen and (max-width: 768px) {
  .alertbadgecali {
    display: none;
  }
  .ask-cali-bubble {
    display: none;
  }
}

/* Optional on mobile */
@media (max-width: 767.98px) {
  .ask-cali-bubble {
    /* Add for mobile specific styles */
    bottom: 10px; /* adjust for mobile */
    right: 10px;  /* adjust for mobile */
  }
}
