﻿
#ChatterBotchatIcon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
}

#ChatterBotWindow {
    display: none;
    border: none;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: rgba(150, 150, 150, 0.2) 0px 10px 30px 0px, rgba(150, 150, 150, 0.2) 0px 0px 0px 1px;
    bottom: 5rem;
    right: 1rem;
    width: 100%;
    max-width: 448px;
    height: 85dvh;
    max-height: 824px;
    border-radius: 0.75rem;
    z-index: 2147483646;
    overflow: hidden;
    background-color: white;
    left: unset;
    top: unset;
}

#ChatterBotIntro {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #ffffff;
    color: black;
    border-radius: 5%;
    width: 100%;
    max-width: 448px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    /* scale bigger and smaller */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.closeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

#CloseChatWindow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
}

#MagicWand {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: block;
}

#ChatterBotChatWindow {
    height: 100%;
    width: 100%;
    border: none;
    display: block;
}