/* Select elementleri için global düzeltme */
select {
  background-color: #1b2130 !important;
  color: white !important;
}

select option {
  background-color: #1b2130 !important;
  color: white !important;
}

select option:hover {
  background-color: #2d3748 !important;
}

select option:checked,
select option:selected {
  background-color: #f97316 !important;
  color: black !important;
}

/* Select dropdown arrow için */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Firefox için özel düzeltme */
@-moz-document url-prefix() {
  select option {
    background-color: #1b2130 !important;
    color: white !important;
  }
}

/* Safari için özel düzeltme */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select option {
    background-color: #1b2130 !important;
    color: white !important;
  }
}
