#chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #6c5ce7;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
}

#chat-window {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 320px;
    height: 450px;
    background: #111;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.chat-header {
    background: #6c5ce7;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

#chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.chat-input {
    display: flex;
}

.chat-input input {
    flex: 1;
}

.quick-actions button {
    margin: 5px;
}