body {
    font-family: Arial, sans-serif;
}

/* Chat Icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
}

.chat-icon img {
    width: 100%;
    height: 100%;
}

/* Chat Box */
.chat-box {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    z-index: 1001;
}

.chat-header {
    background-color: #007bff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f1f1f1;
}

.chat-footer {
    padding: 10px;
    display: flex;
}

.chat-footer input {
    width: 100%;
    padding: 8px;
    margin-right: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.chat-footer button {
    padding: 8px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
