#grandov-chat-widget {
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    font-family: inherit;
    overflow: hidden;
}

#grandov-chat-widget h3 {
    margin-top: 0;
    color: #03a84e;
}

#grandov-chat-widget input,
#grandov-chat-widget textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

#grandov-chat-widget button {
    width: 100%;
    padding: 12px;
    background: #03a84e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

#grandov-chat-widget button:hover {
    background: #028a3f;
}

#grandov-chat-messages {
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    background: #fafafa;
}

.grandov-msg-label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 3px;
}

.grandov-msg-client .grandov-msg-label {
    color: #666;
}

.grandov-msg-admin .grandov-msg-label {
    color: #03a84e;
}

.grandov-msg {
    margin-bottom: 10px;
    max-width: 80%;
    clear: both;
}

.grandov-msg-client {
    float: left;
}

.grandov-msg-admin {
    float: right;
}

.grandov-msg-bubble {
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
}

.grandov-msg-client .grandov-msg-bubble {
    background: #fff;
    border: 1px solid #ddd;
}

.grandov-msg-admin .grandov-msg-bubble {
    background: #03a84e;
    color: #fff;
}

.grandov-msg-time {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}
