/* Target text, number, email, and select dropdown fields */
input[type="text"],
input[type="number"],
input[type="email"],
.dropdown {
  border-radius: 50px; 
  padding: 10px 20px; 
  height: 45px; 
  border: 2px solid #ccc; 
  outline: none; 
  display: inline-flex; /* Helps align text inside a div */
  align-items: center;  /* Centers text vertically */
  font-size: 16px; 
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

/* Focus state for all fields */
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: #007bff; 
}

/* Custom styling for the dropdown arrow */
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px; /* Space so text doesn't overlap the arrow */
}
