.chatbot-container {
    position: fixed;
    bottom: 75px;
    right: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}

#esc-chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #005ec1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#esc-chatbot-toggle:hover {
    background-color: #90dac8;
}

#esc-chatbot-toggle svg {
    fill: #ffffff;
    pointer-events: none;
}

.tooltip {
    position: absolute;
    bottom: 10px;
    right: 55px;
    max-width: 50vw;
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
}

.notification-dot {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    display: block;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.notification-dot.show {
    opacity: 1;
    display: block;
}