
.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.industrytable-container {
    max-width: 100% !important;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    /* padding: 20px; */
    box-shadow: 0 0 6px #cccccc70;
    overflow: auto;
    min-height: 150px;
        display: flex;
    align-items: center;
    justify-content: center;
}

#industryTable {
    width: 100%;
    border-collapse: collapse;
    border: none;
    display: none;
}

#industryTable tr {
    border-bottom: solid 1px #f2f2f2;
}

#industryTable th,
#industryTable td {
    padding: 10px 8px;
    text-align: center;
    border: none;
     font-size: 14px;
}

#industryTable th {
    background-color: #f9fafb;
    position: relative;
    text-align: center; 
    vertical-align: middle;
    font-size: 14px;
    color: #000;
    cursor: pointer;
}

#industryTable td.Ecommerce_Score, 
#industryTable th.Ecommerce_Score {
    background: #fcda4b;
     color: #000;
}

.sort-indicator {
    font-size: 0.8em;
    margin-left: 0.5em;
    display: inline-block;
}

.unsorted::after {
    content: ''; 
}

.sorted-asc::after {
   content: '\25BC'; 
    font-size: 10px;
    padding-left: 5px;
}

.sorted-desc::after {
     content: '\25B2'; 
    font-size: 10px;
    padding-left: 5px;
}
