﻿div.cl
{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgb(0, 96, 138);
    z-index: 2;
    visibility: visible;
}

div.cl_toolbar
{
    position: absolute;
    top: 36px;
    height: 36px;
    left: 0px;
    right: 0px;
    background-color: rgb(0, 96, 138);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

div.cl_refresh
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease;
}
div.cl_refresh:hover
{
    background: rgba(255, 255, 255, 0.12);
}
div.cl_fblink
{
    font-size: 16px;
    color:#c8d6e5;
    margin-left: auto;
}
i.fa-refresh
{
    font-size: 18px;
    color: #DDDDDD;
}

a.cl_crear_sala_btn
{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
a.cl_crear_sala_btn:hover
{
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    text-decoration: none;
}

div.cl_filter
{
    display: flex;
    align-items: center;
    height: 28px;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 214, 229, 0.25);
    border-radius: 6px;
    overflow: hidden;
}

span.cl_filter
{
    display: flex;
    align-items: center;
    color: rgba(200, 214, 229, 0.6);
    padding: 0 6px 0 8px;
    font-size: 14px;
    flex-shrink: 0;
}

input.cl_filter
{
    flex: 1;
    height: 100%;
    border: none;
    background: transparent;
    color: #c8d6e5;
    outline: none;
    padding: 0 8px 0 0;
    font-size: 13px;
}
input.cl_filter::placeholder
{
    color: rgba(200, 214, 229, 0.5);
}
div.cl_filter:focus-within
{
    border-color: rgba(77, 184, 232, 0.6);
    background: rgba(0, 0, 0, 0.3);
}

div.cl_body
{
    position: absolute;
    top: 72px;
    bottom: 25px;
    left: 30px;
    right: 30px;
    background-color: #13161d;
    border-radius: 14px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

div.cl_column_table
{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 24px;
    display: table;
    width: 100%;
}

div.cl_column_inner_container
{
    display: table-row;
    border-style: solid;
    border-left-width: 1px;
    border-top-width: 1px;
    border-color: #1e2330 ;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
div.cl_list_subitem_div
{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 6px;
}
span.cl_list_span_name
{
    color: #c8d6e5;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    transition: color 0.15s ease;
}
tr.cl_list_tr:hover span.cl_list_span_name
{
    color: #7dd3f0;
}
.cl_room_icon
{
    color: rgba(77, 184, 232, 0.4);
    font-size: 13px;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 0.15s ease;
}
tr.cl_list_tr:hover .cl_room_icon
{
    color: rgba(77, 184, 232, 0.75);
}
.cl_room_count
{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-family: "Segoe UI", system-ui, sans-serif;
    font-weight: 600;
    color: #4db8e8;
    background: rgba(77, 184, 232, 0.12);
    border: 1px solid rgba(77, 184, 232, 0.25);
    border-radius: 20px;
    padding: 2px 8px 2px 6px;
    white-space: nowrap;
    flex-shrink: 0;
    pointer-events: none;
    min-width: 40px;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
tr.cl_list_tr:hover .cl_room_count
{
    background: rgba(77, 184, 232, 0.2);
    border-color: rgba(77, 184, 232, 0.5);
}
div.cl_column_name
{
    display: table-cell;
    width: 240px;
    color: #c8d6e5 ;
    background-color: rgb(30, 126, 168);
    border-top-left-radius: 10px;
}
div.cl_column_topic
{
    display: table-cell;
    color: #c8d6e5 ;
    background-color: rgb(30, 126, 168);
    border-top-right-radius: 10px;
}
div.cl_footer{
    position: absolute;
    height: 14px;
    width: 100%;
    bottom: 0px;
    background-color: rgb(30, 126, 168);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 0 solid #1e2330;
    border-left-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
}
span.cl_column_text
{
    position: relative;
    top: 4px;
    left: 2px;
}
div.cl_list_container
{
    position: absolute;
    top: 24px;
    left: 0px;
    right: 0px;
    bottom: 14px;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 4px 10px 6px 10px;
    box-sizing: border-box;
}

table.cl_list_table
{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    table-layout: fixed;
}

tr.cl_list_tr
{
    height: 50px;
    cursor: pointer;
}

tr.cl_list_tr td
{
    background: #1c2333;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.15s ease, border-color 0.15s ease;
}

tr.cl_list_tr:hover td
{
    background: #1f2d45;
    border-color: rgba(77, 184, 232, 0.28);
}

tr.cl_list_tr:hover td.cl_list_td_name
{
    border-left-color: #4db8e8;
    border-left-width: 2px;
}

tr.cl_list_tr_hidden
{
    display: none;
}

td.cl_list_td_name
{
    box-sizing: border-box;
    width: 240px;
    overflow: hidden;
    padding: 0 10px 0 14px;
    vertical-align: middle;
    border-left: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px 0 0 10px;
}

td.cl_list_td_topic
{
    overflow: hidden;
    vertical-align: middle;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0 10px 10px 0;
}

div.cl_topic_container
{
    position: relative;
    height: 22px;
    width: 100%;
    overflow: hidden;
}

canvas.cl_topic
{
    position: absolute;
    height: 20px;
    width: 1000px;
    top: 0;
    background-color: #c8d6e5;
}
@media screen and (max-width: 640px)
{
    tr.cl_list_tr              { height: 90px; display: flex; flex-direction: column; }
    td.cl_list_td_name         { width: 100%; box-sizing: border-box; height: 32px; padding: 4px 10px 0 14px;
                                  border-radius: 10px 10px 0 0; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
    tr.cl_list_tr td.cl_list_td_name  { height: 48px; align-items: center; display: flex; }
    tr.cl_list_tr td.cl_list_td_topic { height: 36px; }
    td.cl_list_td_topic        { height: 24px; padding: 2px 12px;
                                  border-radius: 0 0 10px 10px; border-left: 2px solid rgba(255,255,255,0.07); border-top: none; }
    tr.cl_list_tr:hover td.cl_list_td_name  { border-bottom: none; border-left-width: 2px; border-left-color: #4db8e8; }
    tr.cl_list_tr:hover td.cl_list_td_topic { border-top: none; }
    div.cl_body                { left: 3px; right: 3px; bottom: 25px; }
    div.cl_column_table        { display: none; }
    div.cl_footer              { display: none; }
    div.cl_list_container      { top: 0; bottom: 0; }
    .cl_topic:hover {
        display: flex;
        animation: scrolling 10s linear infinite;
    }
}

@media screen and (min-width: 1100px)
{
    div.cl_body { left: calc(50% - 460px); right: calc(50% - 460px); }
}

@media screen and (min-width: 1500px)
{
    div.cl_body { left: calc(50% - 560px); right: calc(50% - 560px); }
}
div.wait_dialog_text
{
    position: absolute;
    top: 50%;
    margin-top: -24px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    text-align: center;
    color: #c8d6e5 ;
    background-color: #000000;
    font-weight: bold;
    font-size: 12px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 10px;
    border-color: #AAAAAA;
    border-style: solid;
    border-width: 2px;
}
i.fa-sign-in
{
    position: absolute;
    color: #c8d6e5 ;
    font-size: 20px;
    z-index: 5;
}


button.cl_share_btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(200, 214, 229, 0.35);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s ease, color 0.15s ease;
    pointer-events: all;
}
button.cl_share_btn:hover
{
    background: rgba(77, 184, 232, 0.15);
    color: #4db8e8;
}
tr.cl_list_tr:hover button.cl_share_btn
{
    color: rgba(200, 214, 229, 0.6);
}
