body {
    transition: background-color 0.5s;
    font-family: Arial, sans-serif;
}

.content {
    padding: 20px;
}



.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
   margin-top: 20px;
}

.switch input {
    display: none;
}

.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: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: gray;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Dark mode styles */
body.dark-mode {
    background-color: black;
    color: white;
}

.dark-mode .slider {
    background-color: #666;
}

.dark-mode .slider:before {
    background-color: #333;
}


.dark-mode .slider:before {
    background-color: white;
}

/* Apply white color to .deep class in dark mode */
.dark-mode .deep {
    color: white;
}



.dark-mode {
    background-color: #1a1a1a; /* Change this to your preferred dark mode background color */
    color: #ffffff; /* Change this to your preferred dark mode text color */
  }

  /* Add styles for the header-wrap in dark mode */
  .dark-mode-container {
    background-color: #333333; /* Change this to your preferred dark mode header background color */
    color: #ffffff; /* Change this to your preferred dark mode header text color */
  }