/* Progressbar settings */
progress {
  position: fixed;
  bottom: 0;
  left: 0; /* Set left to 0 */
  right: 0; /* Add this line */
  width: 100%;
  height: 5px;
  background-color: transparent;
  z-index: 1000;
  margin: 0;
  box-sizing: border-box;
}



progress::-webkit-progress-bar {
  background-color: transparent;
}

progress::-webkit-progress-value {
  background-color: #007bff94;
}

progress::-moz-progress-bar {
  background-color: #007bff;
}


/* Back to top container styles */
#backToTopContainer {
  position: fixed;
  left: 2.9rem;
  bottom: 0.6rem; /* Adjust this value to position the back to top button under the last label */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* Back to top button styles */
button#backToTop {
  background-color: #0076d6;
  background-image: url('/files/sites/Book/Castlehaven/pictures/arrow_up.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px; /* Adjust these values to control the size of the circle */
  height: 40px;
  border-radius: 50%; /* Make the button a circle */
  z-index: 10;
  position: relative;
}


  #backToTop {
    position: fixed;
    bottom: 70px;
    right: 30px;
    padding: 10px;
    margin: 0;
  }

