.title-all {
  margin: auto;
}

.insight-dashboard-control {
  /*margin-bottom: 10px;*/
}

.dashboard-search-bar, .dashboard-button-bar {
  display: flex;
  gap: 10px;
  padding: 0 5px 10px 5px;
}

.dashboard-search-tab, .dashboard-filter-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.dashboard-search-field, .dashboard-filter-field {
  background: #eeeeee;
  border: none;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 0 5px;
  width: 220px;
  margin-left: 5px;
  height: 24px;
  transition: all 0.2s ease-in-out;
}

.dashboard-search-field:hover,
.dashboard-filter-field:hover,
.dashboard-export-button:hover {
  outline: none;
  background-color: #e0e0e0;
  transition: all 0.2s ease-in-out;
}

.dashboard-search-field:focus,
.dashboard-filter-field:focus {
  outline: none;
  background: #e0e0e0;
  transition: all 0.2s ease;
}

.dashboard-button-bar {
  display: flex;
  flex-wrap: wrap;
}

.dashboard-icon {
  width: 16px;
  filter: grayscale(1);
}

.dashboard-export-button, .dashboard-filter-button {
  border: none;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  color: #666666;
  background-color: #eeeeee88;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  height: 24px;
}

.dashboard-export-button:hover, .dashboard-export-button label:hover,
.dashboard-filter-button:hover, .dashboard-filter-button label:hover {
  cursor: pointer;
}

.dashboard-export-button {
  background-color: #eeeeee88;
}

.dashboard-filter-button {
  background-color: #eeeeee88;
}

.dashboard-filter-button[checked='true'] {
  background: #ccddff88;
}

.dashboard-filter-button[checked='true'] .dashboard-icon {
  filter: grayscale(0);
}

@media screen and (max-width: 500px) {
  .dashboard-search-tab, .dashboard-search-field {
    width: 100%;
  }

  .dashboard-export-button {
    display: none;
  }

  .dashboard-button-bar {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 5px;
    margin: 10px 0 0 0;
  }
}
