#tokensTable {
    width: 100%; /* Ensure table takes full width */
    max-width: none; /* Remove max-width constraint */
    table-layout: auto; /* Change to fixed to maintain column width */
    color: #d4505e;
    background-color:black;
    font-family: monospace;
    border-collapse: separate; /* This is necessary for border-radius to work on tables */
    border-radius: 10px; /* Adjust the radius as needed */
    overflow: hidden; /* This ensures that child elements follow the rounded corners */
}

#table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#filters {
    display: flex;
    gap: 10px;
    align-items: center;
}

#datatable-controls .dataTables_length,
#datatable-controls .dataTables_filter {
    display: inline-block;
    margin-left: 20px;
}

/* CSS for the loading overlay */
#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding-top: 20%;
    z-index: 9999;
}

#refreshButton{
color:black;
}

input[type="submit"]{

}
input[type="number"], input[type="submit"], button {
background-color:#2f596b; !important
}

#tokensTable_info {
 color: #a79fa0 !important;
 abackground-color:white;
 }

.paginate_button {
 color: blue;
 background-color:gray;

 }

#tokensTable_paginate {
 color: #a79fa0 !important;
 }
th td {
  white-space: nowrap; /* Prevent text from wrapping */
 /* width:1px; */
 }
table.dataTable{
 width:fit-content !important;
 }
@media (max-width: 767px) {
  #tokensTable td:first-child, #tokensTable th:first-child {
    max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px) {
  #tokensTable td:nth-child(3), #tokensTable th:nth-child(3),td:nth-child(2), #tokensTable th:nth-child(2),td:nth-child(4), #tokensTable th:nth-child(4) {
    max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
