.filter-dropdown {
  font-size: 0.875rem;
  background-color: transparent;
  min-width: 100%;
  border: none;
  z-index: 1;
  cursor: pointer;
  font-family: "Open Sans", Trebuchet, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  color: #404041;
  font-weight: bold;
}

th {
  background-color: #f2f2f2;
}
input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.filter-dropdown {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  user-select: none; /* Prevent text selection */
}

.filter-dropdown div:first-child {
  padding-right: 24px;
}
/* Add caret to filter dropdown */
.filter-dropdown div:first-child::after {
	content: '\25BE'; /* Unicode character for downward caret */
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
  }
  
.filter-options {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 1;
  max-height: 200px;
  overflow-y: auto;
  width: max-content;
}
.filter-checkbox {
  display: inline-block;
  margin: 0px 4px 0px 0px;
  vertical-align: middle;
}

input.filter-checkbox[value="clear-all"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  cursor: pointer;
  margin: 0;
}

.filter-options label {
  position: relative;
  display: block;
}

.metrics-details > div:nth-child(1) {
  cursor: pointer;
}

.metrics-details > div:nth-child(2) {
  display: none;
}

ul.menu._Skins_RightNav.mc-component {
  display: none;
}

div.sticky-menu {
  opacity: 0;
}

div.sticky-menu:before {
  content: "More Details";
}

table#dataTable th, table#dataTable td {
    padding: 6px;
}