.coinbillboard-table{
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    padding: 20px;
    font-size: 15px;
}
.coinbillboard-table thead{
    margin-bottom: 10px;
    border: none;
}
.coinbillboard-table thead tr{
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
}
.coinbillboard-table thead tr th{
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    padding-bottom:10px;
    font-size: 15px;
}

.coinbillboard-table tbody tr td{
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    padding:10px 0 10px 0;
    font-weight: normal;
    font-size: 15px;
    width:100;
}
.coidbillboard-table tbody tr:last-child td{
    margin-bottom: 10px;
    border: none;
    border-bottom: none;
    padding:10px 0 10px 0;
    font-weight: normal;
}

.color-green{
    color: #090;
}
.color-red{
    color: #d00;
}
.color-hightlight{
    color:rgb(3, 83, 95); 
    background-color:rgba(0, 225, 255, 0.1); 
    padding: 5px; 
    font-weight: bold;
}

.info{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.info .icon{
    margin-right: 10px;
    margin-left: 10px;
}
.info .icon img{
    width:32px;
    height:32px;
}
.info .name-symbol{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size:15px;
}
.info .name-symbol a strong{
    width:100%;
    display:block;
}
.chart{
    min-height: auto!important;
}
.chart canvas{
    width:100px!important;
    /* height: 80px !important; */
    margin: 0 auto;
    vertical-align: middle;
}

.hide{
    display:none;
}

.cbb-pagination{
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.cbb-pagination ul.pagination{
    display: flex;
    justify-content: center;
}
.cbb-pagination li{
    margin: 0 5px;
}
.cbb-pagination li a{
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
    display: flex;
    font-size: 13px;
    justify-content: center;
    align-items: center;
    padding:5px;
    width:32px;
    height: 32px;
}
.cbb-pagination li.active a{
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:5px;
    width:32px;
    height: 32px;
}

.spinner {
    border: 4px solid #f3f3f3; /* Light gray */
    border-top: 4px solid #3498db; /* Blue color */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}