.cc-select {
  position: relative;
  width: 100%;
  min-width: 0;
  font-family: inherit;
}

.cc-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cc-select-trigger {
  width: 100% !important;
  min-height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px !important;
  border: 1px solid #c8d8e8 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .96) !important;
  color: #173a59 !important;
  box-shadow: 0 1px 2px rgba(20, 54, 82, .04) !important;
  font: inherit;
  font-weight: 600 !important;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cc-select-trigger:hover {
  border-color: #89b9e4 !important;
  background: #fff !important;
}

.cc-select.open .cc-select-trigger,
.cc-select-trigger:focus-visible {
  outline: none !important;
  border-color: #2789de !important;
  box-shadow: 0 0 0 4px rgba(39, 137, 222, .14) !important;
}

.cc-select.invalid .cc-select-trigger {
  border-color: #e25555 !important;
  box-shadow: 0 0 0 4px rgba(226, 85, 85, .12) !important;
}

.cc-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cc-select-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #4e7596;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.cc-select.open .cc-select-chevron { transform: rotate(180deg); }

.cc-select-menu {
  position: absolute;
  z-index: 100000;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(148, 176, 201, .55);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 45px rgba(25, 62, 92, .18), 0 3px 10px rgba(25, 62, 92, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px) scale(.985);
  transform-origin: top center;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  scrollbar-width: thin;
  scrollbar-color: #b8cde0 transparent;
}

.cc-select.open .cc-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cc-select-option {
  position: relative;
  width: 100% !important;
  min-height: 40px;
  display: flex !important;
  align-items: center;
  padding: 9px 38px 9px 11px !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: #294c69 !important;
  box-shadow: none !important;
  font: inherit;
  font-weight: 550 !important;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.cc-select-option:hover,
.cc-select-option:focus-visible {
  outline: none !important;
  background: #eef6fd !important;
  color: #0a68b8 !important;
}

.cc-select-option.selected {
  background: #e4f1fc !important;
  color: #075fa9 !important;
  font-weight: 700 !important;
}

.cc-select-option.selected::after {
  content: '✓';
  position: absolute;
  right: 13px;
  color: #1680d3;
  font-size: 15px;
  font-weight: 800;
}

.cc-select-option:disabled { opacity: .45; cursor: not-allowed; }

.cc-toolbar .cc-select {
  width: auto;
  min-width: 190px;
  flex: 0 0 auto;
}

.cc-toolbar .cc-select-trigger { min-height: 42px; }

@media (max-width: 720px) {
  .cc-toolbar .cc-select { width: 100%; min-width: 0; }
}
