.search-wrapper {
  display: flex;
  margin-bottom: 20px;
  padding: 0;
}
.search-wrapper.sr{
	display: block;
}

#search-box {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px
}

#search-button {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  width: 164px;
}

#search-results {  
  border-radius: 4px;
  padding: 0px;
}

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

th, td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination a {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 5px;
  text-decoration: none;
  color: #333;
}

.pagination a.active {
  background-color: #ddd;
}

.pagination a.prev,
.pagination a.next,
.pagination a.first,
.pagination a.last {
  font-weight: bold;
}

.ajax-loader {
  /* Add your desired styling for the loader (e.g., spinner animation) */
}
#overlay{	
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}

.search-results {
  display: inline-block;
  margin: 0 32px;
  width: auto;
}
.search-results table {
  border: 1px solid #ccc;
  background-color: #eee;
}
.search-results table thead th {
  font-weight: bold;
  background-color: #ccc;
}
.search-results table tr th, .search-results table tr td {
  text-align: left;
  padding: 16px 32px;
}
.search-results table tbody tr:nth-child(odd) {
  background-color: #fff;
}
/*.search-results .load-more {
  margin-top: 32px;
}

table tbody tr {
  display: none;
}

table tbody tr.active {
  display: table-row;
}*/
#search-button {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #00a5df;
    border-radius: 0px 0px 0px 0px;
    padding: 15px 10px 15px 10px;
    border-radius: 4px
}
/*.load-more-btn {
    width: 280px;
    margin: 0 auto;
    text-align: center;
    display: none;
    
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #00a5df;
    border-radius: 0px 0px 0px 0px;
    padding: 18px 40px 18px 40px;
}
.load-more-btn a{
    color: #ffffff;
}
.load-more-btn a:hover{
    color: #ffffff;
}*/
table thead th {
    text-align: left;
}