:root {
  --color-primary-blue: #305DFB;
  --color-primary-blue-selected: #053AF5;
  --color-white: #FFFFFF;
  --color-text-primary: #2C405A;
  --color-text-secondary: #3F536E;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #FAFBFC;
  border: 1px solid #C5D9E8;
  border-radius: 4px; /* 8px */
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2C405A;
  cursor: pointer;

  width: 100%;
}

/* Custom arrow using ::after on the wrapper */
.dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 45%;
  right: 12px;
  width: 0.5rem;
  height: 0.5rem;
  pointer-events: none;

  border-left: 2px solid #A8C6DF; /* neutral gray */
  border-bottom: 2px solid #A8C6DF;
  transform: translateY(-50%) rotate(-45deg);
}

.custom-dropdown:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}
