﻿.chatBotPopUp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /*position: fixed;*/
    bottom: 10px;
    right: 10px;
    padding: 5px;
    width: 68px;
    height: 68px;
    border-radius: 5px;
    background-color: #3f51b5;
    color: white;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 5px;
    margin-left: auto;
}

    .chatBotPopUp-button:hover {
        color: #ffffff !important;
    }
/* Style for the ChatBot popup overlay */
.chatBotPopUp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.chat-main-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.chat-main-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

/* Display the popup when the anchor tag is clicked */
#chatBotPopUp:target {
    display: flex;
}

#chatBot-parentContent {
    position: relative;
    bottom: -74px;
}
