/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Sorting Dropdown */
.property-sort-form {
  display: flex;
  justify-content: flex-end; /* Align to right side */
}

.property-sort-form select {
  padding: 10px 12px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  outline: none;
  cursor: pointer;
  min-width: 180px;
}

.property-sort-form select:focus {
  border-color: #30C9FE;
  box-shadow: 0 0 4px rgba(48, 201, 254, 0.3);
}

/* Responsive: center align on mobile */
@media (max-width: 768px) {
  .property-sort-form {
    justify-content: center;
  }

  .property-sort-form select {
    width: 100%;
/*     max-width: 250px; */
  }
}


/* Container */
.custom-property-search-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Fields */
.custom-property-search-bar .search-field {
  display: flex;
  flex-direction: column;
}

/* Inputs & Selects */
.custom-property-search-bar input,
.custom-property-search-bar select {
  padding: 10px 12px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  outline: none;
}

.custom-property-search-bar input:focus,
.custom-property-search-bar select:focus {
  border-color: #30C9FE;
  outline: none;
}

/* Button */
.custom-property-search-bar .search-btn {
  width: 100%;
  padding: 10px 12px;
  cursor: pointer;
}

/* Force button into last grid cell */
.custom-property-search-bar button {
  align-self: end;
}

/* Responsive: 2 columns on tablets & mobile */
@media (max-width: 900px) {
  .custom-property-search-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
