/* Ensuring the Home link is styled correctly */
header nav a {
  color: white;
  text-decoration: none;
}

/* Add hover and active states for consistency */
header nav a:hover,
header nav a:focus {
  color: #ff5722;
}

/* Styles for the settings container */
.settings-container {
  padding: 2rem;
  background-color: #1c1c1c;
  color: white;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Button styling */
.small-button {
  display: block;
  width: 120px;
  padding: 0.5rem 1rem;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin: 0.5rem 0;
}

.small-button:hover {
  background-color: #e64a19;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1rem;
}

label {
  font-size: 1rem;
  color: #ff5722;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.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: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

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

input:checked + .slider:before {
  transform: translateX(20px);
}

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

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

/* Ensuring category title styling */
.category-title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff5722;
  height: 2rem;
}

.category-title .vertical-line {
  width: 5px;
  height: 2rem;
  background: #ff5722;
  margin-right: 10px;
}