
/* 24-11-25 */
.whatsapp-link, .chatbot-icon {
    position: fixed;
    right: 44px;
    z-index: 999;
}
.whatsapp-link { bottom: 180px; }
.chatbot-icon { 
    background-color: #ffffff;
    border-radius: 50%;
    bottom: 110px; 
    cursor: pointer;     
}
.whatsapp-link img, .chatbot-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* 24-11-25 */

/* 27-11-25 */

/* Popup */
.small-popup {
    position: fixed;
    bottom: 130px;
    right: 110px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    border-bottom-right-radius: 2px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.25);
    font-size: 14px;
    z-index: 9999;
    display: none;
}
.small-popup p { 
    margin: 0; 
    cursor: pointer; 
    position: relative;
}

.small-popup img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: -6px;
    right: -6px;
    cursor: pointer;
}

/* Message Box */
.chat-container {
    position: fixed;
    bottom: 110px;
    right: 44px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    z-index: 9999;
}
.chat-header {
    background: #004aad;
    color: white;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.close-chat { cursor: pointer; font-size: 18px; }

.close-chat img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
}

.chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.message {
    margin: 6px 0;
    padding: 8px 12px;
    max-width: 80%;
    border-radius: 10px;
    line-height: 1.4;
}

.message p {
    margin-bottom: 10px;
}

.message a {
    display: inline-block;
    margin: 5px;
    color: #004aad;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.message a:hover {
    text-decoration: underline;
    margin-left: 15px;
}

.message a img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.message a img:hover {
    scale: calc(1.1);
}

.user { background: #d1e7ff; align-self: flex-end; border-bottom-right-radius: 2px; }

.bot { background: #eeeeee; align-self: flex-start; border-bottom-left-radius: 2px; }

/* Input Box */
.chat-input-box {
    display: flex;
    border-top: 1px solid #ddd;
}
.chat-input-box input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-bottom-left-radius: 12px;
}
.chat-input-box button {
    padding: 10px 16px;
    background: #004aad;
    color: white;
    border: none;
    cursor: pointer;
    border-bottom-right-radius: 12px;
}

.chat-input-box button img {
    width: 20px;
    height: 20px;
}
