.hd-data-table-wrapper .tabulator .tabulator-footer .tabulator-page.active {
    color: #69aa41;
}

.table-controls-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.table-controls-wrapper input {
  margin-right: 10px;
  width: 50%;  /* Adjust based on layout responsiveness */
  min-width: 250px;  /* Ensure usability on smaller screens */
  padding: 4px;  /* Enhance text visibility and comfort */  
}

@media (max-width: 767px) {
  .table-controls-wrapper input {
    width: 80%;  /* Increased width for smaller devices */
  }
}

.table-controls-wrapper button {
  padding: 5px 10px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
}

.table-controls-wrapper button:hover {
  background-color: #e0e0e0;
}

/* Styling for the search group */
.search-group {
  display: flex;
  align-items: center;
}

/* Styling for the download button and its container */
.download-group {
  position: relative;
  margin-left: auto; /* This pushes the download group to the right */
}

.download-button {
  padding: 8px 16px;
  background-color: #f0f0f0; /* Light gray background */
  color: #333; /* Dark gray text color */
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
}

.download-button::after {
  content: '\25BC'; /* Unicode for down arrow */
  margin-left: 8px;
  font-size: 0.8em;
}

.download-button:hover {
  background-color: #e0e0e0; /* Slightly darker on hover */
}

/* Dropdown styling */
.download-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  right: 0; /* Align dropdown to the right of the button */
  margin-top: 4px;
}

.download-menu.show {
  display: block;
}

.download-menu a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.download-menu a:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.search-group input:focus {
  outline: none;
}
