#list_table_length{
  float: left;
  padding: 15px;
}

#list_table_filter, #list_table_paginate{
  float: right;
  padding: 15px;
}

#list_table_previous, #list_table_next{
  width: 90px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #007bff;
  border: 1px solid #c5c5c500;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  line-height: 1;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

#list_table_next{
  border-bottom-right-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
}

#list_table_previous{
  border-bottom-left-radius: 0.1875rem;
  border-top-left-radius: 0.1875rem;
}

#list_table_previous:hover, #list_table_next:hover{
  background-color: #0e77e8;
}

#list_table_processing{
  text-align: center;
}

/* Style the tab */
.tab {
  overflow: hidden;
  background-color: #ffffff;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 14px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}