#chatbot-container {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 420px;
    height: 580px;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: #000;
    display: none;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.floating-circle-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border-bottom-right-radius: 0;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}
.floating-circle-image:hover {
    transform: scale(1.25);
}
#floating-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
#floating-circle-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.cdn-chatbot-window {
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cdn-chatbot-messages {
    display: flex;
    flex-direction: column;
    margin: 10px 10px 10px 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    /* width: 100%; */
    height: 100%;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    /* border-bottom-right-radius: 10px;
    border-top-right-radius: 10px; */
}
.cdn-chatbot-input-area {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cdn-chatbot-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px !important;
    border-radius: 15px;
    background-color: #fff;
    margin-right: 5px;
}
.cdn-chatbot-button-area {
    display: flex;
    align-items: self-end;
    border-radius: 15px;
    outline: none;
}
.cdn-chatbot-send-btn {
    padding: 10px 16px;
    height: 100%;
    border: none;
    background: #f07e37;
    color: #fff;
    cursor: pointer;
    font-size: small;
    border-radius: 15px;
}
.cdn-chatbot-spinner {
    border: 4px solid rgb(0, 0, 0, 0.5);
    border-left-color: #f07e37;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    align-self: center;
    background-color: #000;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.cdn-chatbot-message-bot {
    margin: 10px 10px;
    max-width: 80%;
    align-self: flex-start;
    display: flex;
    gap: 5px;
    margin-top: 4px;
    margin-bottom: 4px;
}
.cdn-chatbot-message-user {
    margin: 10px 10px;
    max-width: 80%;
    align-self: flex-end;
    display: flex;
    margin-top: 4px;
    margin-bottom: 4px;
}
.cdn-chatbot-bot-name {
    font-size: 14px;
    font-weight: bold;
    color: #f07e37;
    margin-bottom: 2px;
}
.cdn-chatbot-message-bot-text {
    padding: 8px 16px;
    border-radius: 16px;
    background: #ffece0;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 30px;
    color: #f07e37;
    /* border-top-left-radius: 0px; */
}
.cdn-chatbot-message-user-text {
    padding: 8px 16px;
    border-radius: 16px;
    background: #000;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 30px;
    color: #fff;
    /* border-top-right-radius: 0px; */
}
.cdn-chatbot-bot-icon {
    display: flex;
    flex-direction: column;
    align-self: center;
    object-fit: contain;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    padding-right: 5px;
}
/* .cdn-chatbot-bot-responing {
    display: flex;
    flex-direction: row;
    align-self: center;
} */
.cdn-chatbot-header {
    display: flex;
    align-items: start;
    background-color: transparent;
    padding: 10px;
    height: 55px;
}
.cdn-chatbot-header-text {
    font-size: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
    font-weight: bold;
    margin-right: 10px;
    padding-left: 4px;
    color: #fff;
}
.cdn-chatbot-close-btn {
    margin-left: auto;
    padding: 0px 12px;
    font-size: 24pt;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #fff;
}
.cdn-chatbot-header-image {
    padding-left: 5px;
    padding-top: 5px;
    height: 80%;
    width: fit-content;
    object-fit: contain;
}
.cdn-chatbot-server-busy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.cdb-chatbot-server-busy-image {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}
.cdn-chatbot-server-busy-text {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}