/* Global */

html, body
{
    height: 100%;
}

/* END Global */

/* Username Input */
#lfb_chat_username_form_container
{
    width: 400px;
    height: 200px;

    border: medium dashed #00ff00;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;

    align-content: center;
    text-align: center;

}

#lfb_chat_username_form
{
    margin: auto;
    width: 100%;

    position: absolute;

    top: 20%;

    align-content: center;
    text-align: center;

}

#lfb_chat_username_form label
{
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;

}

#lfb_chat_username_form input
{
    width: 80%;
}

#lfb_chat_username_form_submit_btn
{
    position: absolute;
    margin: auto;

    width: 80%;
    height: 15%;

    top: 30%;
    bottom: 0;
    left: 0;
    right: 0;

}

/* END Username Input */

/* Chat */

#lfb_chatbox
{
    width: 50%;
    height: 99%;

    border: 3px dashed #00ff00;

    font-size: 20px;
}

#lfb_chatbox_msg_container
{
    width: 100%;
    height: 95%;

    color: #000000;
    font-size: 20px;

    overflow-y: scroll;
    overflow-x: hidden;
}

#lfb_chatbox_msg_container p
{
    position: relative;
    left: 5%;
}

#lfb_chat_console
{
    width: 49%;
    height: 49.5%;

    border: 3px dashed #00ff00;

    position: absolute;
    top: 0;
    left: 50.5%;

    overflow-y: scroll;
    overflow-x: hidden;
}

#lfb_chat_console p
{
    position: relative;
    left: 5%;
}

#lfb_chatbox_send_container
{
    position: relative;

    width: 50%;
    height: 5%;

    position: absolute;
    bottom: 0;

    border-top: 3px dashed #00ff00;
}

#lfb_chatbox_send_msg
{
    position: relative;
    width: 85%;
    height: 65%;

    left: 1%;
    top: 5%;

    background: #111111;
    border: 1px solid #00dd00;

    font-size: 95%;
    color: #ffffff;
}

#lfb_chatbox_send_form
{
    width: 100%;
    height: 100%;
}

#lfb_chatbox_send_msg_btn
{
    position: relative;

    left: 1%;
    top: 1%;

    width: 12%;
    height: 85%;

    color: #fafafa;
    background-color: #151515;
}

#lfb_audio_control_container
{
    position: absolute;
    width: 49%;
    height: 10%;

    top: 50%;
    left: 50.5%;

    border-bottom: 3px dashed #00ff00;
    border-right: 3px dashed #00ff00;
}

#lfb_chat_vc_mute_mic_btn
{
    position: relative;

    top: 20%;

    width: 15%;
    height: 40%;

    color: #fafafa;
    background-color: #151515;
}

#lfb_chat_vc_mute_audio_btn
{
    position: relative;

    top: 20%;

    width: 15%;
    height: 40%;

    color: #fafafa;
    background-color: #151515;
}

#lfb_chat_mic_enabled_status {
    font-family: monospace;
    font-size: 24px;
    font-weight: 600;
    color: #1faaff;
}

#lfb_chat_mic_disabled_status {
    font-family: monospace;
    font-size: 24px;
    font-weight: 600;
    color: #ff0000;
}

/* END Chat */
