.fol6{ width: 100%;
  padding: 2.9px;
  position: fixed;
  }
 .fol6 a{ 
  float: left;
  padding: 2.7px;
  width: 16%; /* Four links of equal widths */
  }



    .fol6 {
      position: fixed;
      width: 100%;
    }

    .container2 {
      display: flex;
      justify-content: space-between;
    }

    .container2 a {
      text-decoration: none;
    }

   .button4 {
    padding: 10px;
    display: inline;
    border-radius: 2px;
    font-family: "Arial";
    border: 0;
    margin: 0 10px;
    background: #DA70D6;
    font-size: 15px;
    line-height: 15px;
    width: auto;
    height: auto;
    box-sizing: content-box;
    cursor: pointer;
  }
   .commentz4 {
    border: 1px solid;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px;
      font-weight: bold;
    }

    .imgs3 {
      border-radius: 80%;
      height: 35px;
      width: 35px;
    }

    
    
    .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-left: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}


body, html {
  overflow-x: hidden; /* Prevent horizontal scrolling */
  overflow-y: auto; /* Ensure vertical scrolling */
}
#commentSection {
  position: relative; /* Use relative instead of fixed/absolute */
}
#post-container, #comments-container {
  min-height: 100px; /* or another appropriate value */
}
#post-container, #comments-container {
  overflow-y: auto; /* Enable vertical scrolling if needed */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on mobile */
}