.form-group-neu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group-neu label {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  margin-left: 4px;
}

.form-group-neu input,
.form-group-neu textarea {
  padding: 12px 14px;
  border: none;
  outline: none;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  font-size: 13px !important;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-group-neu input:focus,
.form-group-neu textarea:focus {
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  transform: scale(0.99);
}

textarea {
  resize: none;
}

/* color box input */
.color-picker-wrapper input[type="color"] {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-picker-wrapper input[type="color"]:active {
  box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}

/* Base Select2 container (multiple)*/
.select2-container--default .select2-selection--multiple {
  background: var(--surface);
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  padding: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: box-shadow 0.3s ease;
}

.select2-container--open .select2-dropdown--above{
    border-radius: 4px !important;
}
/* Hover and focus effect */
.select2-container--default .select2-selection--multiple:focus,
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
}

/* Tag style */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e3e8ef;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 4px 8px;
  margin: 3px;
  font-size: 14px;
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
}

/* Remove “x” shadow artifacts */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  color: #555;
  margin-right: 6px;
}

/* Placeholder and search input */
.select2-search__field {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

/* Dropdown */
.select2-dropdown {
  background: var(--surface);
  border: none;
  border-radius: var(--radius);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  overflow: hidden;
}

/* Dropdown items */
.select2-container--default .select2-results__option {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text);
}

/* Hovered dropdown option */
.select2-container--default .select2-results__option--highlighted {
  background-color: #dce4ef !important;
  color: #333 !important;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  padding: 0 !important;
}

/* Base Select2 container (SINGLE) */
.select2-container--default .select2-selection--single {
  background: var(--surface);
  border: none !important;
  border-radius: var(--radius) !important;
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  height: 45px !important;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: box-shadow 0.3s ease;
}

.select2-container--open .select2-dropdown--below{
  border-radius: 4px !important;
}

/* Focus / Hover */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
}

/* Selected text */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--text);
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  padding-left: 4px !important;
  font-size: 13px !important;
}

/* Center the dropdown arrow */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  position: absolute;
  top: 48% !important;
  right: 5px !important;
  transform: translateY(-50%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

/* Dropdown menu (same as multiple) */
.select2-dropdown {
  background: var(--surface);
  border: none;
  border-radius: var(--radius);
  box-shadow: inset 2px 2px 5px var(--shadow-dark),
    inset -3px -3px 7px var(--shadow-light);
  overflow: hidden;
}

/* Dropdown options */
.select2-container--default .select2-results__option {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text);
}

/* Hovered dropdown option */
.select2-container--default .select2-results__option--highlighted {
  background-color: #dce4ef !important;
  color: #333 !important;
}
