/* CSS */
.button-accept {
  align-items: center;
  background-clip: padding-box;
  background-color: green;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-accept:hover,
.button-accept:focus {
  background-color: darkgreen;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-accept:hover {
  transform: translateY(-1px);
}

.button-accept:active {
  background-color: green;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

.button-discard {
  align-items: center;
  background-clip: padding-box;
  background-color: red;
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-discard:hover,
.button-discard:focus {
  background-color: red;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-discard:hover {
  transform: translateY(-1px);
}

.button-discard:active {
  background-color: #c85000;
  box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
  transform: translateY(0);
}

select.selectList {
  width:200px;
  padding:5px;
  font-size: 14px;  
}

.div-content {
 position: absolute;
 top: 60px; 
 left: 20px;
}

.div-top {
 background-color: #FFB6C1; 
 height: 50px;
 width: 100%;
 font-size: 18px; 
 line-height: 50px;
 padding-left: 20px;
 position: absolute;
 left: 0px;
 right: 0px;
 top: 0px;
}

 /* unvisited link */
a:link {
  color: black;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: black;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: black;
  text-decoration: underline;
} 

/* Ensure the size of the image fit the container perfectly */
img {

  /* This rule is very important, please don't ignore this */
  max-width: 100%;
}
