#ai-chatbot-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: linear-gradient(to bottom,  #cae0f9 0%,#eaf2ff 100%);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    display: none;
    z-index: 99999;
}

.dark #ai-chatbot-container{
    background: linear-gradient(to bottom,  #01011f 0%,#1d63de 100%);
}

#chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #0b2148;
}
.dark #chat-header{
    color: #ffffff;
}

#chat-header img {
    width: 60px;
    margin-right: 8px;
}

#chat-header button {
    background: none;
    border: none;
    color: #0b2148;
    font-size: 14px;
    cursor: pointer;
}
.dark #chat-header button{
    color: white;
}

#chat-messages {
    padding: 15px;
    text-align: left;
    height: 250px;
    overflow-y: auto;
    border-radius: 8px;
    color: #0b2148;
}
.dark #chat-messages{
    color: #ffffff;
}
#chat-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

#ai-chatbot button.prompt-btn {
    background: #C2DFF7;
    border: none;
    color: #0b2148;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    flex-grow: 1;
}

.dark #ai-chatbot button.prompt-btn{
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.send-btn-block {
    display: flex;
    align-items: center;
    background: linear-gradient(100.21deg, #023E72 -17.78%, #1F58BA 97.53%);
    border-radius: 8px;
    padding: 8px;
    margin-top: 10px;
}
.dark .send-btn-block{
    background: #0b2148;
}
#chat-input {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

#chat-input::placeholder {
    color: #888;
}

#chat-send {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
}

       /* Chatbot Floating Icon */
#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2000ff, #2e93ff);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0px 4px 10px rgba(255, 0, 102, 0.5);
    transition: transform 0.2s ease-in-out;
    animation: glow 2s infinite alternate ease-in-out;
}

@keyframes glow {
    0% { box-shadow: 0px 0px 10px rgba(29, 99, 222, 0.4); }
    100% { box-shadow: 0px 0px 20px rgba(10, 59, 145, 0.8); }


}

/* Chatbot Face */
.chatbot {
    position: relative;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Eyes */
.eyes {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.eye {
    width: 6px;
    height: 6px;
    background: black;
    border-radius: 50%;
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 95% { transform: scale(1); }
    96%, 98% { transform: scaleY(0.1); }
    99%, 100% { transform: scale(1); }
}

/* Mouth */
.mouth {
    width: 12px;
    height: 6px;
    background: black;
    border-radius: 50%;
    margin-top: 4px;
    animation: smile 4s infinite;
}

@keyframes smile {
    0%, 95% { transform: scaleY(1); }
    96%, 100% { transform: scaleY(1.3); }
}

@media (max-width: 768px){
    #ai-chatbot-container {
        position: fixed;
        bottom: 0px;
        right: 0px;
        width: 100%;
        max-width: 100%;
    }
}