/* MAIN */

.custom-share-table{
    width:100%;
    font-family:Arial,sans-serif;
}

/* TOP BAR */

.table-top-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
}

/* SEARCH */

.custom-search{
    flex:1;
}

.custom-search input{
    width:100%;
    height:42px;
    border:1px solid #d9d9d9;
    padding:0 14px;
    font-size:13px;
    outline:none;
    border-radius:2px;
    background:#fff;
}

.custom-search input:focus{
    border-color:#8dc63f;
}

/* DOWNLOAD BUTTON */

.custom-download button{
    height:42px;
    padding:0 20px;
    border:none;
    background:#8dc63f;
    color:#fff;
    font-size:13px;
    cursor:pointer;
    border-radius:2px;
    transition:0.3s;
    white-space:nowrap;
    font-weight:600;
}

.custom-download button:hover{
    background:#7ab52f;
}

/* TABLE */

#shareTable{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

/* HEADER */

#shareTable thead th{
    background:#8dc63f;
    color:#fff;
    text-align:left;
    padding:12px 10px;
    font-size:13px;
    font-weight:600;
    border-right:1px solid rgba(255,255,255,0.2);
    line-height:1.4;
}

/* BODY */

#shareTable tbody td{
    padding:12px 10px;
    font-size:13px;
    border-bottom:1px solid #e5e5e5;
    vertical-align:middle;
    line-height:1.5;
    word-break:break-word;
}

/* ROW COLORS */

#shareTable tbody tr:nth-child(odd){
    background:#f3f7eb;
}

#shareTable tbody tr:nth-child(even){
    background:#ffffff;
}

/* COLUMN WIDTHS */

#shareTable th:nth-child(1),
#shareTable td:nth-child(1){
    width:38%;
}

#shareTable th:nth-child(2),
#shareTable td:nth-child(2){
    width:20%;
}

#shareTable th:nth-child(3),
#shareTable td:nth-child(3){
    width:20%;
}

#shareTable th:nth-child(4),
#shareTable td:nth-child(4){
    width:22%;
    text-align:center;
}

/* COMPANY LINK */

.company-link{
    color:#111;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    line-height:1.6;
}

.company-link:hover{
    color:#8dc63f;
}

/* CHAT BUTTON */

.chat-btn{
    background:#8dc63f;
    color:#fff !important;
    text-decoration:none;
    padding:0 10px;
    border:none;
    cursor:pointer;
    font-family:inherit;
    white-space:nowrap;
    border-radius:4px;
    font-size:12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:78px;
    height:40px;
    box-sizing:border-box;
    transition:0.3s;
    text-align:center;
    line-height:1.3;
    font-weight:600;
}

.chat-btn:focus-visible{
    outline:2px solid #4a7a12;
    outline-offset:2px;
}

.chat-btn:hover{
    background:#7ab52f;
}

/* PAGINATION */

.dataTables_wrapper .dataTables_paginate{
    margin-top:14px;
}

.dataTables_wrapper .paginate_button{
    padding:5px 10px !important;
    font-size:12px !important;
    border-radius:2px !important;
}

/* HIDE DEFAULT SEARCH */

.dataTables_filter{
    display:none;
}

/* NO DATA */

.no-data{
    text-align:center;
    padding:30px !important;
    font-weight:600;
}

/* =========================
   MOBILE RESPONSIVE TABLE
========================== */

@media(max-width:767px){

    /* TOP BAR */

    .table-top-bar{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .custom-search{
        flex:1;
    }

    .custom-search input{
        height:42px;
        font-size:12px;
        padding:0 12px;
    }

    .custom-download button{
        height:42px;
        padding:0 16px;
        font-size:12px;
        min-width:110px;
    }

    /* TABLE */

    #shareTable{
        width:100% !important;
        table-layout:fixed;
    }

    /* HEADER */

    #shareTable thead th{
        font-size:11px;
        padding:10px 6px;
        line-height:1.4;
        word-break:break-word;
        text-align:left;
    }

    /* BODY */

    #shareTable tbody td{
        font-size:11px;
        padding:12px 6px;
        line-height:1.5;
        vertical-align:middle;
        word-break:break-word;
    }

    /* COLUMN WIDTHS */

    #shareTable th:nth-child(1),
    #shareTable td:nth-child(1){
        width:44%;
    }

    #shareTable th:nth-child(2),
    #shareTable td:nth-child(2){
        width:16%;
    }

    #shareTable th:nth-child(3),
    #shareTable td:nth-child(3){
        width:16%;
    }

    #shareTable th:nth-child(4),
    #shareTable td:nth-child(4){
        width:24%;
        text-align:center;
    }

    /* COMPANY */

    .company-link{
        font-size:11px;
        line-height:1.6;
        font-weight:600;
    }

    /* BUTTON */

    .chat-btn{
        min-width:68px;
        height:38px;
        padding:0 6px;
        font-size:11px;
        border-radius:4px;
        line-height:1.3;
        text-align:center;
    }

    /* PAGINATION */

    .dataTables_wrapper .dataTables_paginate{
        margin-top:16px;
        text-align:center !important;
        float:none !important;
    }

    .dataTables_wrapper .paginate_button{
        padding:4px 8px !important;
        font-size:11px !important;
    }

}
