.search-select-input {
  width: 300px;
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: border-color 0.3s ease;
}

.div-wrapper {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  gap: 8px;             /* 控件间距 */
  margin-bottom: 4px;
}

.dropdown-wrapper {
  position: relative;
  /* width: 100%; */
  max-width: 350px;
}

.custom-dropdown {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  z-index: 9999;
  display: none;
}

.custom-option {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.custom-option:hover {
  background-color: #f5f5f5;
}

.custom-option strong {
  display: block;
  font-size: 16px;
}

.custom-option span {
  font-size: 13px;
  color: #666;
  display: block;
}

.person-wrapper {
  position: relative;
  width: 100%;
}


.person-display-container {
  display: flex; 
  align-items: flex-start;
  gap: 20px;  /* ✅ 自动为子元素之间添加间距 */
}

.person-detail-container {
  display: none; /* 默认隐藏，点击后显示 */
  margin-top: 12px;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


.filter-sidebar {
    width: 200px;
    padding: 10px;
    border-right: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 14px;
}

.filter-sidebar h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
}

.filter-sidebar label {
    display: block;
    margin: 4px 0;
    cursor: pointer;
}

.btn {
  /* margin-top: 30px; */
  padding: 6px 12px;
}

