/* style.css */
body {
    font-family: Arial, sans-serif;
}

.chat-box {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.chat-box.hidden {
    display: none;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
}

.operator-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.operator-info p {
    margin: 0;
}

.chat-body {
    padding: 10px;
}

.chat-messages {
    height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.chat-input {
    width: calc(100% - 70px);
    padding: 5px;
}

.send-btn {
    width: 60px;
    padding: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}
