.navbar {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger div {
  height: 4px;
  background-color: #333;
  border-radius: 2px;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0,0,0,0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.9s ease;
  z-index: 999;
}

.slide-menu.open {
  transform: translateX(0);
}

.slide-menu a {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.slide-menu img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.author {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
  border-top: 1px solid #ddd;
  padding-bottom: 5px;
  margin-top: 5%;
}

.WhatsApp, 
.Facebook,
.Tiktok {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.9s, color 0.9s;
  margin-bottom: 2%;
}

.WhatsApp {
  border: 2px solid #25D366;
  color: #25D366;
}

.WhatsApp:hover {
  background-color: #25D366;
  color: white;
}

.Facebook {
  border: 2px solid #3b5998;
  color: #3b5998;
}

.Facebook:hover {
  background-color: #3b5998;
  color: white;
}

.Tiktok {
  border: 2px solid #010101;
  color: #010101;
}

.Tiktok:hover {
  background-color: #010101;
  color: black;
}

.WhatsApp img, 
.Facebook img,
.Tiktok img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.theme-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 18px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input { display: none; }

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

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

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

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