/*
Theme Name: soledad
Theme URI: https://pencidesign.net/
Description: A Multipurpose, Newspaper, Blog & WooCommerce WordPress Theme
Author: PenciDesign
Author URI: https://pencidesign.net/
Version: 8.6.5
Requires PHP: 7.4
Requires at least: 6.6
License: GNU General Public License version 3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Tags: black, green, white, light, one-column, two-columns, three-columns, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, featured-images, post-formats, translation-ready
Text Domain: soledad
Domain Path: /languages
*/
/*
 * Silence is gold
 */
/* The main css file is located in "themes/soledad/main.css" */

/* ================================
   LivRIGHT Search Form Styling
   ================================ */
.livright-search-form {
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Input & Select fields */
.livright-search-form input[type="text"],
.livright-search-form input[type="search"],
.livright-search-form select {
  background: #ffffff !important;
  color: #111;
  border: 1px solid #ccc;
  border-radius: 8px;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 150px;
}

/* Focus state */
.livright-search-form input:focus,
.livright-search-form select:focus {
  outline: none;
  border-color: #cfaf5e;
  box-shadow: 0 0 5px rgba(207,175,94,0.5);
}

/* Dropdown arrow */
.livright-search-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7l4.5 4.5L14.5 7'/ %3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Submit button */
.livright-search-form button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  height: 40px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

/* Hover & focus for button */
.livright-search-form button:hover,
.livright-search-form button:focus {
  background: #cfaf5e;
  color: #111;
  transform: translateY(-2px);
}

/* On mobile: full width stacking */
@media (max-width: 768px) {
  .livright-search-form {
    flex-direction: column;
  }
  .livright-search-form input,
  .livright-search-form select,
  .livright-search-form button {
    width: 100%;
  }
}

