/* Tombol melayang */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d0daea;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}

/* Chatbox */
#chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    height: 350px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
    z-index: 999;
}

/* Header */
.chat-header {
    background: #dfe3e9;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

/* Body */
.chat-body {
    padding: 10px;
    height: 300px;
    overflow-y: auto;
}