/* Findings Filters */
/* Secuseek Findings Filter Bar & Multi-Select CSS */
.secuseek-findings-filters {
  margin-bottom: 20px;
  margin-top: 20px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1.5px solid #e5e7eb;
}
.secuseek-multiselect {
  position: relative;
  min-width: 180px;
  width: auto;
  max-width: 350px;
  margin-right: 10px;
}
.secuseek-multiselect .input-area.compact {
  border-bottom: 1px solid rgb(92, 92, 92);
  min-height: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  cursor: pointer;
  background: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s;
  width: 100%;
  padding-right: 22px;
  gap: 4px 0;
}
.secuseek-multiselect .input-area:focus-within,
.secuseek-multiselect .input-area:hover {
  border-bottom: 1px solid #1e9e4a;
}
.secuseek-multiselect .input-label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
  transition: 0.2s cubic-bezier(.4,0,.2,1);
  opacity: 1;
  background: #fff;
  padding: 0 2px;
  z-index: 2;
}
.secuseek-multiselect .input-label.floating {
  top: -10px;
  left: 8px;
  font-size: 11px;
  color: #22ad5a;
  opacity: 1;
  background: #fff;
  padding: 0 4px;
}
.secuseek-multiselect .arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.secuseek-multiselect .arrow svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: #374151;
  stroke: #374151;
}
.secuseek-multiselect[open] .arrow svg {
  transform: rotate(90deg);
}
.secuseek-multiselect .chip {
  background: #e5f7ee;
  color: #22ad5a;
  border-radius: 12px;
  padding: 2px 8px;
  margin: 2px 4px 2px 0;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
}
.secuseek-multiselect .chip button {
  background: none;
  border: none;
  color: #22ad5a;
  margin-left: 4px;
  cursor: pointer;
  font-size: 13px;
}
.secuseek-multiselect .dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #eee;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 0 0 8px 8px;
}
.secuseek-multiselect .dropdown-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: background 0.15s;
}
.secuseek-multiselect .dropdown-item.selected {
  background: #e5f7ee;
  color: #22ad5a;
}
.secuseek-multiselect .dropdown-item span:last-child {
  margin-left: auto;
  color: #1e9e4a;
  font-size: 11px;
} 