/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
select.form-plain {
  background-color: transparent !important;
  color: #fff !important;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.75rem;
}

select.form-plain:focus {
  outline: none;
  box-shadow: none;
}

select.form-plain option {
  background-color: rgba(17, 24, 39, 0.95);
  color: #fff;
}

select.form-plain option:hover,
select.form-plain option:checked,
select.form-plain option:focus {
  background-color: rgba(59, 130, 246, 0.25);
  color: #fff;
}

select.form-plain::-ms-expand {
  display: none;
}

.select-primary .ts-control {
  background-color: transparent;
  border: none;
  padding: 0;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

.select-primary .ts-control .item,
.select-primary .ts-dropdown .option {
  color: #fff;
}

.select-primary .ts-control input {
  color: #fff;
}

.select-primary .ts-dropdown {
  background-color: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(12px);
}

.select-primary .ts-dropdown .option {
  font-size: 0.9rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.select-primary .ts-dropdown .option:hover,
.select-primary .ts-dropdown .option.active {
  background-color: rgba(59, 130, 246, 0.25);
}

.ts-wrapper .ts-dropdown,
.ts-wrapper.single .ts-control {
  border-radius: 0.75rem;
}
