/* Multi-Select Dropdown */
.multi-select-wrapper {
  position: relative;
}

.multi-select-btn {
  cursor: pointer;
  background: #fff !important;
}

.multi-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
}

.multi-select-dropdown.show {
  display: block;
}

#type-checkboxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
}

@media (min-width: 768px) {
  #type-checkboxes {
    grid-template-columns: 1fr 1fr;
  }
}

#type-checkboxes label {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  margin: 0;
}

#type-checkboxes label:hover {
  background: #f0f6ff;
}

#type-checkboxes input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #0b5ed7;
  flex-shrink: 0;
}

#type-search {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
  padding: 0.45rem 0.75rem;
}

#type-search:focus {
  border-color: #0b5ed7;
  box-shadow: 0 0 0 3px rgba(11,94,215,0.08);
  outline: none;
}