/* Target the entire scrollbar */
::-webkit-scrollbar {
  width: 5px; /* width of the vertical scrollbar */
  height: 10px; /* height of the horizontal scrollbar */
}

/* Target the scrollbar track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Target the scrollbar thumb (draggable handle) */
::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 10px;
}

/* Change thumb color on hover */
::-webkit-scrollbar-thumb:hover {
  background: #404040;
}

/* Rank Math custom style */
.rank-math-breadcrumb p {
  font-family: "Sweet Sans Pro", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  color: #808080;
}
.rank-math-breadcrumb a {
  color: #404040;
  text-decoration: underline;
}
