/* Dropdown styles */
.dropdown {
  appearance: none;
  -webkit-appearance: none; /* For Safari and Chrome */
  -moz-appearance: none; /* For Firefox */
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  width: 150px; /* Set width as needed */
  position: relative;
}

/* Remove default arrow icon */
.dropdown::-ms-expand {
  display: none;
}

/* Style the arrow icon */
.dropdown::after {
  content: "\25BC"; /* Unicode character for down arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 12px; /* Adjust the font size as needed */
  transform: translateY(-50%);
}

/* Hover effect */
.dropdown:hover {
  border-color: #007bff;
}

/* Focus effect */
.dropdown:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
