html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
}

input:focus, select:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgb(13 110 253 / 25%);
}

select {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  cursor: pointer;
  appearance: none;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  width: 165px;
}

/* User input */
input[type=text], input[type=number] {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 4px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100px;
}      

input[type=checkbox]:disabled {
  opacity: 0.5;
}

input[type=checkbox]:disabled, input[type="checkbox"]:disabled + label {
  opacity: 0.5;
  cursor: auto;
}

input[type=checkbox]:not([disabled]), input[type=checkbox]:not([disabled]) + label {
  cursor: pointer;
}

input[hidden], label[hidden] {
  margin: 0 !important;
  padding: 0 !important;
}

[hidden] {
  display: none !important;
}

/* Tables */
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: auto-flow;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

/* Buttons */
.success_button {
  background-color: #01a201;
  border: none;
  color: white;
  margin-top: 5px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.success_button:hover {
  background-color: #228B22;
  transition: 0.5s ease-in-out;
}

.red_button {
  background-color: #ff2427;
  border: none;
  color: white;
  margin-top: 5px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

.red_button:hover {
  background-color: #f9060a;
  transition: 0.5s ease-in-out;
}

/* Chevron (used for select menus) */
.chevron {
  position: relative;
  display: block;
  height: 50px; /*height should be double border*/
}

.chevron::before,
.chevron::after {
  position: absolute;
  display: block;
  content: "";
  border: 25px solid transparent; /*adjust size*/
}

.chevron::before {
  top: 0;
  border-top-color: #b00; /*Chevron Color*/
}

.chevron::after {
  top: -10px; /*adjust thickness*/
  border-top-color: #fff; /*Match background colour*/
}

/* Adjustments to default behavior */
br {
  display: block;
  content: "";
  margin-top: 4px;
}

p, em, summary {
  overflow-wrap: break-word;
  word-wrap: detbreak-word;
  hyphens: auto;
  white-space: normal;
}

details summary { 
  cursor: pointer;
}

a {
  cursor: pointer;
}

details summary > * {
  display: inline;
}

/* hide number up-down arrows
 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* for Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

h1 {
  margin-bottom: 3px;
}