.chat-btn
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;

    background-color: #239B56;
    color: #FFF;

    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
}

.chat-popup
{
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    
    background-color: #FFF;

    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}

.chat-header
{
    background: #239B56;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}

.chat-body
{
    height: 400px;
    padding: 10px;
    overflow-y: auto;
}

.chat-footer
{
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
}

#chat-close
{
    background-color: transparent;
    border: none;
}

#chat-submit
{
    width: 100%;
    background-color: #239B56;
    color: #FFF;

    margin-top: 1rem;
}