/* ================================
   DEISO Finder Search Pro - Full CSS
   ================================ */

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Style the search input in the Finder bar */
#deiso-finder-bar input {
  font-size: 16px;
}

/* Floating Search Icon - Fully Left and Lower Centered */
#deiso-finder-float-btn {
  position: fixed !important;
  top: 60% !important;                      /* Push icon downward from center */
  left: 20px !important;                       /* Align with the left edge */
  transform: translateY(-50%) !important;  /* Center on own height */
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;             /* White background */
  color: #000 !important;                  /* Black icon color */
  border-radius: 50% !important;           /* Make icon circular */
  z-index: 999998 !important;              /* Stay above other elements */
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 768px) {
  #deiso-finder-float-btn {
    left: 15px !important;   /* Align with the left edge */
  }
}
