/* Target the React Select menu container to position dropdown below */
.css-2b097c-container .css-26l3qy-menu {
  position: absolute !important;
  top: 100% !important;
  z-index: 1000 !important;
}
 
/* Alternative selector if the above class doesn't exist */
.css-2b097c-container [class*="menu"] {
  position: absolute !important;
  top: 100% !important;
  z-index: 1000 !important;
}
 
/* Ensure the control container has relative positioning */
.css-2b097c-container {
  position: relative !important;
}