/* Style the select container */
.ht-select {
  position: relative;
  width: 100%;
}

/* Hide default select */
.ht-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

/* Custom dropdown arrow */
.ht-select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #888;
}

/* Open select on focus */
.ht-select select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Style the dropdown options */
.ht-select select option {
  background: white;
  padding: 10px;
  font-size: 16px;
  color: #333;
}

/* Hover effect for options (only works in some browsers) */
.ht-select select option:hover {
  background-color: #f1f1f1;
}
