/*
Theme Name: Car Rental App Theme
Theme URI: https://example.com/car-rental-theme
Author: Manus
Author URI: https://example.com
Description: A custom WordPress theme for a car rental application, converted from a React app.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-car-rental-theme
*/

/* Add your custom CSS here */


/* Container style */
.country-selector-container {
  display: inline-block;
  position: relative;
}

/* Select style */
.styled-select {
  appearance: none; /* remove default arrow */
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 36px 10px 12px;
  font-size: 16px;
  border-radius: 8px;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/* Hover/focus effect */
.styled-select:hover,
.styled-select:focus {
  border-color: #007bff;
  outline: none;
}
.cars-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
	gap: 1rem;
}

.section-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: #222;
	margin: 0;
}

.filters-sort-options {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.filter-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-group label {
	font-size: 0.95rem;
	color: #555;
}

.filter-group select {
	padding: 0.4rem 0.6rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	background-color: #fff;
	font-size: 0.95rem;
	min-width: 140px;
	transition: border 0.2s ease;
}

.filter-group select:focus {
	border-color: #007bff;
	outline: none;
}
