#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  background: linear-gradient(135deg, #ff4d4d, #cc0000, #7c0202);
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  line-height: 50px; /* vertically center the ↑ */
}

#scrollToTopBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}



.site-map {
  text-align: center;
 /* padding: 10px 0;
  background-color: #f9f9f9;  optional */
  font-family: sans-serif;
}

.site-map .label,
.site-map a {
  display: inline;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 10px;
}

.site-map .label::after {
  content: "|";
  margin-left: 10px;
  color: #999;
}

.site-map a::after {
  content: "|";
  margin-left: 10px;
  color: #ccc;
}

.site-map a:last-child::after {
  content: "";
  margin: 0;
}