/* === Custom Select === */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  min-width: 250px;
}

.custom-select {
  background: #faf9f6;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.custom-option {
  padding: 10px 12px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-option:hover {
  background-color: #1f3b73 !important;
  color: #fff !important;
}

.custom-select.open .custom-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
