	 
 
.bottom-section {
    width: 380px;
    padding-left: 6px;
    margin-left: 7px;
}

/* Rreshti i parë */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
}

.arrow {
  color: #white;
  font-size: 22px;
}

/* Linja ndarëse */
.separator {
  border: 0;
border-top: 1px solid #4a4a5a70;
  margin: 5px 0;
}

/* Rreshti i dytë */
.activation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.subtitle {
  margin: 0;
  font-size: 13px;
  color: #6c6c85; /* Ngjyra gri e tekstit poshtë */
}

/* Stilimi i Switch-it (Butoni jeshil) */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #33334d; /* Ngjyra kur është OFF */
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

/* Kur checkbox-i është i klikuar (ON) */
input:checked + .slider {
  background-color: #32d74b; /* Ngjyra jeshile e saktë e iOS */
}

input:checked + .slider:before {
  transform: translateX(20px);
}
 
				
		