.account-toggle {
  background: #fefcfb;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.toggle-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eaf4fc;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  color: #2b2b2b;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.3s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background-color: #4ab4f4;
}

.switch input:checked + .slider::before {
  transform: translateX(19px);
}

/* Content area */
.toggle-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 14px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 10px;
}

/* Two equal columns */
.toggle-content .section {
  width: auto !important;
}

.section h4 {
  color: #2b3b4c;
  margin-bottom: 8px;
  font-size: 14px;
}

.section select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: #fff5eb;
  color: #333;
  font-size: 14px;
  outline: none;
  border-radius: 8px !important;
  font-family: var(--headingFontLight);
  letter-spacing: inherit;
  color: currentcolor;
  border: 0px;
  box-sizing: content-box;
  padding: 16.5px 14px;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 6px;
}

/* Divider between the two sections */
.divider {
  width: 1px;
  height: 80px;
  background: #d8d8d8;
  align-self: center;
  margin: 0px 20px !important;
}
.direction_sec .checkbox-group label {
  display: flex;
  align-items: center;
}
.direction_sec .checkbox-group input[type="checkbox"] {
  margin-right: 6px;
  height: 20px;
  width: 20px;
}
