

#chat-box {
    flex: 1;
    bottom: 81px;
    right: 0px;
    width: 380px;
    background-color: #f3edef;
    padding-bottom: 20px;
    position: fixed;
    border-top:1px solid black;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background: #f5f0f1;
    height: 500px;
    display: none;
    z-index: 999;
}

#chatbox_bottom {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 400px;
    height: 80px;
    border-top:1px solid black;
    background-color:#f5f0f1;
    border-radius:0 0 20px 20px;
    transition: bottom 0.5s ease;
    display: none;
    z-index: 999;

}


/* below input box*/
#chatbox_bottom input {
    flex: 1;
    margin-top: 10px;
    height:20px;
    padding: 15px 20px;
    border: 1px solid #0c0c0c;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    position: relative;
    left: 3px;
    top: 3px;
    width:53%;
}

#chatbox_bottom input:focus {
    border-color: #c5151e;
}


  
/*below for other buttons*/

  /*below for new chat button*/
.plus-button-container {
    position: relative;
    display: inline-block;
    top: 6px;
}

#plus-button {
    background-color: #f5f0f1; /* The button background is white */
    color: black; /* The plus sign is black */
    border: none; /* No border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* No padding to ensure perfect centering */
}

#plus-button:hover {
    transform: rotate(45deg);
}



/*below  Foor tool tips */
.tooltip {
    position: absolute;
    bottom: 110%;
    left: 85%;
    transform: translateX(-40%);
    background-color: black;
    color: white;
    padding: 5px 5px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    height: 20px;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.plus-button-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10%;
    transform: translateX(-0%);
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}


/*below  Foor loading gif */
.processing-gif {
    width: 30px; /* Adjust width as needed */
    height: 30px; /* Adjust height as needed */
}



/* Media query to disable rotation on mobile devices */
@media (max-width: 768px) {
    .plus-button:hover{
        transform: rotate(90deg); /* Ensure no rotation occurs */
    }
}


#sparkleButton {
    position: absolute;
  
    left: 310px;
    bottom: 47px;
    background-color: #d42c34;
    font-size: 18px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    
    white-space: nowrap;
    border-radius: 100px;
    position: relative;
    
  }
  
  #sparkleButton:hover {
    scale: 1.05;
    background-color: #9c0d14;
  }
  
  #overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 601px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    border-radius: 0 0 20px 20px;
    z-index: 1000; /* Make sure it appears on top */
    cursor: pointer; /* Make the entire overlay clickable */
    pointer-events: auto; /* Allow clicks inside */

}

#confirmation-box {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#confirm-box {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #c5151e;
    color: white;
    border-radius: 4px;
    cursor: pointer; /* Make it look clickable */
    display: inline-block;
    text-align: center;
    user-select: none; /* Prevent text selection */
}

#confirm-box:hover {
    background-color: #840c12;
}





  