/* General image styles */
img {
	border: 0;
	display: block;
	margin-right: auto;
	border: none;
}

/* Caption styles */
.caption {
	font-size: 9px;
	clear: both;
	margin-top: 4px; 
	margin-bottom: 8px;
	font-style: italic;
}

/* Horizontal rule styles */
.hr {
	clear: both;
	margin-top: 4px; 
	margin-bottom: 8px;
}

/* Toggle switch styles */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-left: 15px;
  vertical-align: middle;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #4b4f64;
}

input:focus + .slider {
  box-shadow: 0 0 1px #4b4f64;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 22px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Switch label */
.switch-label {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 12px;
  color: #4b4f64;
}

/* Content sections */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
}

/* Layout for sidebar and content */
.main-container {
  display: flex;
  gap: 30px;
}

.sidebar {
  flex-shrink: 0;
  width: 200px;
}

.main-content {
  flex: 1;
}

/* Image alignment */
#profile-image {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
