/* Custom app styles loaded without Vite */

/* Shared color tokens */
:root {
  --ui-text-muted: #9aa4ad;
  --ui-border-soft: rgba(255, 255, 255, 0.12);
  --ui-surface-1: rgba(255, 255, 255, 0.03);
  --ui-surface-2: rgba(255, 255, 255, 0.01);
  --ui-chip-bg: rgba(255, 255, 255, 0.05);
  --ui-chip-border: rgba(255, 255, 255, 0.14);
  --ui-accent-info: #9ad0ff;
  --ui-accent-warn: #ffd36e;
}

/* Choices.js dropdown readability in dark UI */
.choices .choices__list--dropdown .choices__item,
.choices .choices__list[aria-expanded] .choices__item {
  color: #f1f3f5 !important;
}

.choices .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #2a2a2a !important;
  color: #fff !important;
}

.choices .choices__list--dropdown .choices__input,
.choices .choices__list[aria-expanded] .choices__input {
  background-color: #1f1f1f !important;
  color: #fff !important;
  border-color: #444 !important;
}

.choices .choices__list--dropdown .choices__input::placeholder {
  color: #bbb !important;
}

.choices .choices__list--single .choices__item {
  color: #fff !important;
}

.choices,
.choices .choices__inner {
  background-color: #1f1f1f !important;
  color: #fff !important;
  border-color: #444 !important;
}

.choices .choices__placeholder {
  color: #9aa0a6 !important;
}

.choices .choices__item--disabled {
  color: #777 !important;
}

/* Sidebar scroll fix */
.app-sidebar .sidebar-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 3.5rem - 1px);
}

/* Select2 dark mode */
body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection {
  background-color: #1f242d;
  border-color: #3a4250;
  color: #e6ebf2;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5.select2-container--open .select2-selection,
body[data-bs-theme="dark"] .select2-container--bootstrap-5.select2-container--focus .select2-selection {
  border-color: #5d84d6;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.2);
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered,
body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
  color: #e6ebf2;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection__placeholder {
  color: #9aa4b2;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
  background-color: #1c222c;
  border-color: #3a4250;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-search .select2-search__field {
  background-color: #151a21;
  border-color: #3a4250;
  color: #e6ebf2;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-search .select2-search__field::placeholder {
  color: #8f99a8;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option {
  color: #e6ebf2;
  background-color: transparent;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected] {
  background-color: #2a3d61;
  color: #f7fbff;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option[aria-selected="true"] {
  background-color: #244f36;
  color: #d6ffe8;
}

body[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option[aria-disabled="true"] {
  color: #7f8794;
}
