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

#chat-icon {
    color: #0b7253;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}

#chat-icon-link {
    color: #ffffff;
    font-size: 2em;
}

#chat-window {
    display: none;
    background-color: #fff;
    padding: 20px;
    border-radius: 0 0 5px 5px;
}

#chat-window form input,
#chat-window form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

#chat-window form button {
    background-color: #3490dc;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}