.table-container table{
    width: 100%;
    border-collapse: collapse;
}


.table-container table th:first-child,
.table-container table tbody tr td:first-child{
   text-align: left; 
   padding-left: 20px;
}
.table-container table th:not(:first-child){
    text-align: center;
}
.table-container table th{
    padding-bottom: 20px;
}


.table-container table tbody tr:first-child td{
    padding-top: 20px;
}
.table-container table tbody tr td:not(:first-child){
    text-align: center;
}
.table-container table tbody tr td{
    text-align: left;
    padding: 20px 0;
}

.table-container table tbody tr:nth-child(even){
    background-color: #FCFCFC;
}

.table-container table tbody tr td a:hover{
    color:#333;
}

.table-container-wrapper {
    display: inline-block;
    width: 100%;
}
.table-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.table-container .more_trs_btn {
    display: inline-block;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--yellow);
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 16px;
    box-shadow: none;
    transition: 0.15s;
    margin: 30px auto;
    cursor: pointer;
}

.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

@media screen and (min-width: 601px) {
    .table-container table tbody tr{
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
    }
    
    .table-container table tbody tr:hover{
        border-color:var(--primary-color);
    
    }
}

@media screen and (max-width: 600px) {
  .table-container-wrapper {
    overflow-y: scroll;
    /* overflow-x: scroll; */
    /* max-height: 500px; */
    height: 100%;
    max-width: 100%;
    width: 100%;
  }
  .table-container table tbody tr td a span.header-btn-text{
      display: block;
      color: var(--primary-color);
  }
  .table-container table tbody tr td:first-child{
    min-width: 300px;
    max-width: 450px;
    width: 100%;
  }
  .table-container table tbody tr td:not(:first-child){
    min-width: 130px;
    width: 100%;
  }
}
