/* Style for the chatbot icon */
.chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

.chatbot-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal for Chat */
.chat-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: transparent;
    z-index: 1000;
}

/* Chat Modal Content */
.chat-modal-content {
    /* position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: absolute;
    bottom: 100px;
    right: 50px;
    background-color: #3d3d3d;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

/* Chat window */
.chat-window {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* Chat Input Area */
.chat-input {
    display: flex;
    gap: 10px;
}

/* Input field styling */
.chat-input input {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button styling */
.chat-input button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 70px;
}

.chat-input button:hover {
    background-color: #45a049;
}
