

.settings-center {
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    
}
  
  
  .settings-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin: 20px 0 6px;
  }
  
  
  .settings-group {
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
  
  .settings-label {
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  
  .segment-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F3F3F3;
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 4px;
  }
  
  .segment-btn {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 26px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
  }
  
  .segment-btn.active {
    background: var(--green);
    color: var(--btn-text);
  }
  
  
  .toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 420px;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
  }
  
  .switch input {
    display: none;
  }
  
  .slider {
    position: absolute;
    inset: 0;
    background-color: #e5e5e5;
    border-radius: 30px;
    transition: 0.18s;
  }
  
  .slider:before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    top: 4px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.18s;
  }
  
  .switch input:checked + .slider {
    background-color: var(--green);
  }
  
  .switch input:checked + .slider:before {
    transform: translateX(24px);
  }
  
.settings-group-wrapper {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}