/* .note-editor.note-frame {
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.custom-form-control {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}

.tokenfield.tokenfield-mode-tokens {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: none;
}

.mailer_header_splitter {
  height: 2px;
  background: #aaaaaa;
  margin-bottom: 20px;
}

.mailer_header_section {
  letter-spacing: 3px;
  color: #aaaaaa;
  font-weight: bold;
}

.mailer_avatar_alias {
  background: #eee;
  font-weight: bold;
  border-radius: 24px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
} */

.custom-form-control {
  border: none;
  border-bottom: 1px solid #ced4da;
  border-radius: 0;
}

/* 1) the outer box */
.tokenfield {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  border: 1px solid #ced4da; /* same as .form-control */
  border-radius: 0.25rem; /* same as .form-control */
  background-color: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* focus ring like Bootstrap */
.tokenfield:focus-within {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* 2) the “pills” */
.tokenfield .token {
  display: inline-flex;
  align-items: center;
  margin: 2px 4px;
  font-size: 0.875rem;
  background: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.2rem;
}

/* the little “×” inside each pill */
.tokenfield .token .token-remove {
  margin-left: 0.35rem;
  font-size: 0.8rem;
  color: #6c757d;
  cursor: pointer;
}
.tokenfield .token .token-remove:hover {
  color: #495057;
}

/* 3) the inline input field */
.tokenfield input {
  flex: 1 0 100px; /* grow to fill */
  margin: 2px;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  outline: none;
  min-width: 80px;
}

/* if any residual .form-control or .custom-form-control tries to sneak in */
.tokenfield .form-control,
.tokenfield .custom-form-control {
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
