<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Global Select Icon Replacement === */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;

  background-image: url("data:image/svg+xml;utf8,&lt;svg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'&gt;&lt;path d='M6 9l6 6 6-6'/&gt;&lt;/svg&gt;");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 24px 24px;
}

/* === Input counter style (removes number input arrows) === */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* For Firefox */
}


</pre></body></html>