#open-ai-chat {
    position: fixed;
    bottom: 165px;
    right: 25px;
    background: #1d2951;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    z-index: 999999;
}

#ai-chat-container {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 100px;
    width: 350px;
    max-height: 520px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999999;
}

#ai-chat-header {
    background: #1d2951;
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header-1 img {
    width: 100%;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

#ai-chat-window {
    padding: 15px;
    height: 340px;
    overflow-y: auto;
    background: #f8f8f8;
}

.main-ai-response {
    margin-bottom: 12px;
    color: black;
}

.main-ai-response a {
    color: #a90000 !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-ai-response a:hover {
    color: #ff0000 !important;
    text-decoration: underline;
}

.ai-response {
    background: #e3e9ff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: black;
    margin-bottom: 6px;
}

#ai-chat-input-form {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
}

#ai-chat-input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    color: black;
}

.eq-1-chatbot {
    width: 60px;
    background: none;
    border: none;
    cursor: pointer;
}

.user-message {
    text-align: right;
    margin-bottom: 10px;
}

.user-message span {
    display: inline-block;
    background: #1d2951;
    color: white;
    padding: 10px;
    border-radius: 8px;
}

ul.ai-bullet-list {
    padding-left: 20px;
    margin: 5px 0;
}

@media screen and (max-width:600px) {
    #ai-chat-container {
        bottom: 160px;
        right: 20px;
        height: 480px;
        width: 90%;
    }
}