.chatbot {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px; /* Fixed size of the chatbot */
    height: 80px; /* Fixed size of the chatbot */
    background-color: dodgerblue;
    border-radius: 50%; /* Always round */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    z-index: 1000;
}

.chatbot-header {
    color: white;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.chatbot-icon {
    display: block;
    font-size: 30px;
    margin-bottom: 5px;
}

.chatbot-text {
    display: block;
    font-size: 14px;
}

.chatbot-content {
    display: none; /* Initially hidden */
    position: absolute;
    bottom: 100%; /* Position above the chatbot */
    left: 50%;
    transform: translateX(-50%);
    width: 350px; /* Size of the dropdown menu */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 10px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s ease, transform 0.2s ease; /* Faster transition */
    z-index: 1001;
}

.chatbot-content.show {
    display: block; /* Display block for animation */
    opacity: 1;
    transform: scale(1);
}

.items-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 1px solid dodgerblue;
    border-radius: 5px;
}

.items-list .item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.item-icon {
    font-size: 20px;
    margin-right: 10px;
}

.item-text {
    font-size: 14px;
}

.item:hover {
    background-color: #d6d6d6;
}
