.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
}

.role-radio {
  display: none;
}

.role-label {
  padding: 6px 14px;
  background: #e0e0e0;
  border-radius: 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.role-radio:checked + .role-label {
  background: #1890ff;
  color: white;
}

#search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 0;
  min-width: 0;
}

#search-btn {
  background: #1890ff;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

#search-btn:hover {
  background: #40a9ff;
}
