.search_div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:90%;
}

#search_form{
  display:flex;
  align-items:center;
  gap:10px;
  width: 60%;
}

select{
  width:100%;
  padding:8px;
  margin:6px 0;
  border:1px solid #ccc;
  border-radius:4px;
  max-width:200px;
}

#search_button{
  width:auto;
}

#control_div{
  display:flex;
  align-items:center;
  gap:50px;
}

#control_buttons{
  display:flex;
  gap:0;
}

#control_buttons button{
  border-radius:0;
  border-right:1px solid rgba(0,0,0,0.15);
}

#first{
  border-top-left-radius:4px;
  border-bottom-left-radius:4px;
}

#last{
  border-top-right-radius:4px;
  border-bottom-right-radius:4px;
  border-right:none;
}

#section_label{
  display:flex;
  align-items:center;
  padding:0 10px;
  background:#f4f4f4;
  border-right:1px solid rgba(0,0,0,0.15);
  font-size:14px;
}