.user-chip {
  display: inline-flex;
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 16px;
  padding: 0;
  margin: 5px;
  background-color: var(--chip-background-color);
}

.user-chip.initials {
  background-color: transparent;
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 8px;
  font-size: 0.75em;
}

.user-name {
  font-size: 0.9em;
  line-height: 30px;
  color: var(--chip-text-color);
}

.toggle-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.toggle-container .toggle-desc {
  margin-left: 12px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  flex-shrink: 0;
}

/* Hide default HTML checkbox */
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-container .toggle-tittle {
  margin-block-start: 0;
  margin-block-end: 0.5em;
  font-weight: 700;
  font-size: 1.0em;
}

.toggle-container .toggle-explanation {
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: 500;
  font-size: 0.95em;
}

/* The slider - the moving part of the toggle */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  /* Off state background */
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
  /* Makes it rounded */
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  /* Color of the moving circle */
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  /* Makes it a circle */
}

input:checked+.slider {
  background-color: var(--primary-brand-color);
  /* On state background (blue in this case) */
}

input:checked+.slider:before {
  -webkit-transform: translateX(16px);
  /* Moves the circle to the right */
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

#scheduled-event-finished-form {
  min-width: 600px;
}