.table_name table {
  border-radius: 30px;
  overflow: hidden;
}
.table-controls {
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.table-controls .column-counter {
  width: 40px;
  text-align: center;
}
.table-controls .nav_table_next,
.table-controls .nav_table_prev {
  background: transparent;
  border-radius: 50px;
  padding: 0 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #95C11F;
  color: #fff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  border: 1px solid #95C11F;
  text-transform: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2509803922);
}
.table-controls .nav_table_next:hover,
.table-controls .nav_table_prev:hover {
  background: #fff;
  color: #95C11F;
}

.table_theme {
  overflow-x: clip;
  overflow-y: auto;
  max-height: 80vh;
}
@media screen and (max-width: 992px) {
  .table_theme {
    overflow-x: auto;
    max-height: 60vh;
  }
}
.table_theme table {
  width: 100%;
  border-left: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-collapse: collapse;
  table-layout: auto;
  font-size: 12px;
}
.table_theme table thead {
  background-color: #95C11F;
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.table_theme.comp table thead {
top:0;
}
.table_theme table thead th {
  color: #fff;
  text-transform: uppercase;
  padding: 30px;
}
@media screen and (min-width: 1400px) {
  .table_theme table thead th {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
  }
}
.table_theme table tbody td {
  border-bottom: 1px solid #E5E5E5;
  padding: 30px;
  word-wrap: break-word;
}
.table_theme table tbody tr:nth-child(odd) {
  background: #fff;
}
.table_theme table tbody tr:nth-child(even) {
  background: #EFF9D5;
}