#footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #e6e6e6;
    background: var(--primary-background-color);
    /* background-color: #ffffff; */
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 10px 0;
    
}
#footer-internal {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /* background-color: #ffffff; */
    position: inherit;
    bottom: 0;
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.privacy-policy {
  color: #007bff; 
  text-decoration: none !important; 
}
.privacy-policy:hover {
  text-decoration: underline;
}

.theme-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.theme-switch {
  display: inline-block;
  height: 34px;
  position: relative;
  width: 60px;
}

.theme-switch input {
  display: none;
}

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

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

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

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

.slider.round {
  border-radius: 34px;
}

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

em {
  margin: 0 5px;
}