  /* Chat bot button styling */
  .chat-bot-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
 }

 .chat-bot-popup:hover {
    transform: scale(1.1);
 }

 .chat-bot-popup img {
    width: 30px;
    height: 30px;
 }

 /* Chat box popup styling */
 .chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 99999;
 }
body{
    overflow-x: hidden;
}
 .chat-header {
    background-image: linear-gradient(45deg, #6a0000, #a80000) !important;
    color: #fff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-weight: bold;
 }

 .chat-box-content {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
 }

 .chat-bubble {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 10px;
    margin: 5px 0;
    display: flex;
    align-items: center;
 }

 .chat-bubble:last-child{
    display: block;
 }

 .chat-bubble.user {
    background-color: #DCF8C6;
    justify-content: flex-start;
 }

 .chat-icon {
    margin-right: 10px;
    color:  transparent;
    background-image: linear-gradient(45deg, #6a0000, #a80000) !important;
    -webkit-background-clip: text;
 }

 .chat-bubble.bot {
    background-color: #f0f0f0;
    text-align: left;
    margin: 10px 0;
 }

 .chat-bubble p {
    margin: 0;
    font-size: 14px;
    color: #333;
 }

 /* Keyframe for blinking effect */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Apply blinking effect to the button */
.blink-animation {
  animation: blink 1s infinite;
}
