#mychat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-window {
    width: 300px;
    height: 400px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #007bff;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
}
