#comic-chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFA908;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: #FFA909;
    transition: border 0.3s;
    animation: blink1 1s infinite alternate;
}

#comic-chatbot-window {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    background: #f2f2f2;
    border: 2px solid #444;
    padding: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    font-size: 16px;
}

.comic-suggestion {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

div#comic-suggestions ul {
    padding-left: 0px;
}

div#comic-suggestions ul li {
    list-style-type: none;
}

/*Clsoe icon alignment css*/
span.close_icon {
    float: right;
    cursor: pointer;
}



.comic-character-img {
    display: inline-block;
    background: #FFA908;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 2px;
     
}



#comic-suggestions {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.chat-bubble {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 15px;
/*    max-width: 70%;*/
    position: relative;
}

.chat-bubble.left {
    background-color: #f9fafb;
    justify-content: flex-start;
}

.chat-bubble.right {
    background-color: #cce5ff;
    margin-left: auto;
    justify-content: flex-end;
}

.chat-bubble img {
    border-radius: 50%;
    margin-right: 10px;
}

.typing .dots span {
    animation: blink 1s infinite;
}

.typing .dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.typing .dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

.subtopics button {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

