/* Please define your custom styles here */

/* margins for consent page */
cons {
  margin-left: 10%;
  margin-right: 10%;
}

/* settingts for image presentation */
.dot {
  height: 600px;
  width: 600px;
  background-color: rgba(128, 128, 128, 0);
  border-radius: 50%;
  border:5px solid rgba(166, 166, 166, 0.396); 
  display: inline-block;
  pointer-events: none
}

.probeButton {
  font-size: 16px;
}

.button {
  background-color: rgb(104, 176, 224); /* Green */
  border: none;
  color: white;
  padding: 5px 18px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 8px;
  transition-duration: 0.4s;
}

.button:hover {
  background-color: rgb(165, 204, 230); /* Green */
  color: white;
}

/* probe range & slider */

.range-wrap {
  position: relative;
  margin: 0 auto 3rem;
}
.range {
  width: 100%;
}
.bubble {
  background: blue;
  color: white;
  padding: 4px 12px;
  position: absolute;
  top: -5px;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.bubble::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: blue;
  top: -5px;
  left: 50%;
}
 .underEnd {
   position: absolute;
   left: -70%
 }
  .upperEnd {
   position: absolute;
   left: 101%
 }
/*likert scale */
table.border {
    border-collapse: collapse;
    border-spacing: 0;
}
table.border td,
table.border th {
    border: 1px solid grey;
    padding: 3px;
}