.headsetting {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 20px;
  margin-top:10px;
  background-color:#252424;
  border-radius: 15px;
  width:96%;
}
.headsetting h2{
	font-size:2.5em;
	color: #FFD700;
}
.wrapsetting {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-top: 10px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Right Column Enhancements */
.right-sidebar {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  line-height: 1.6;
}

.right-sidebar h3 {
  color: #34495e;
  font-size: 15px;
  border-left: 3px solid #ff9900;
  padding-left: 8px;
  margin-top: 0;
}

.right-sidebar a {
  color: #0073aa;
  text-decoration: none;
}

.right-sidebar a:hover {
  text-decoration: underline;
}

.left-area {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  line-height: 1.6;
}

  .wrapsetting ul { list-style: none; }
  .wrapsetting ul li { display: inline; } 
  .wrapsetting ul li img { border: 2px solid white; cursor: pointer; width: 80px; height:80px }
  .wrapsetting ul li img:hover { border: 4px solid #00FFFF; }
  
  
  /* toggle in label designing */
    .wrapsetting .toggle {
        position : relative ;
        display : inline-block;
        width : 70px;
        height : 32px;
        background-color: #F1F1F1;
        border-radius: 30px;
        border: 2px solid #252424;
    }
          
    /* After slide changes */
    .wrapsetting .toggle:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #252424;
        top: 1px; 
        left: 1px;
        transition:  all 0.5s;
    }
          
    /* Toggle text */
    .wrapsetting p {
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
    }
          
    /* Checkbox checked effect */
    .wrapsetting .checkbox:checked + .toggle::after {
        left : 40px; 
    }
          
    /* Checkbox checked toggle label bg color */
    .wrapsetting .checkbox:checked + .toggle {
        background-color: #00FFFF;
    }
          
    /* Checkbox vanished */
    .wrapsetting .checkbox { 
        display : none;
    }

/* Style the select box like a toggle */
.wrapsetting select {
    appearance: none;        /* remove browser default */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #F1F1F1;
    border: 3px solid #252424;
    border-radius: 20px;
    padding: 5px 15px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    width: 150px;
    height: 36px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Hover & focus effect */
.wrapsetting select:hover,
.wrapsetting select:focus {    
    background-color: #EFFFFF;
    outline: none;
}	
	
/* Centered Submit Button */
.center-submit {
  text-align: center;
  margin-top: 30px;
  width:100%;
}

.center-submit input[type="submit"] {
  background: linear-gradient(45deg, #7c70f9, #00c3ff);
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.4s, transform 0.2s;
}

.center-submit input[type="submit"]:hover {
  background: linear-gradient(45deg, #00c3ff, #7c70f9);
  transform: scale(1.05);
}