/* Floating button */
#fcw-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0073aa;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* Chat panel */
#fcw-chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-height: 450px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: white;
    display: none; /* start hidden */
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    z-index: 9999;
}

/* Header */
#fcw-chat-header {
    background: #0073aa;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
}

#fcw-chat-close {
    cursor: pointer;
}

/* Body */
#fcw-chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    //border-bottom: 1px solid #ccc;
}

/* Footer */
#fcw-chat-footer {
    display: flex;
    //border-top: 1px solid #ccc;
}

#fcw-chat-input {
    flex: 1;
    padding: 5px;
    border: none;
    outline: none;
    margin:4px;

}

#fcw-chat-send {
    background: #0073aa;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius:4px;
    margin-right: 3px;
}