/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./source/scss/buttons.scss ***!
  \***********************************************************************************************************************************************/
a:not(.button),
a:link:not(.button),
a:visited:not(.button) {
  color: forestgreen;
  text-decoration: underline;
}
a:hover,
a:link:hover,
a:visited:hover {
  color: darkgreen;
}

.button,
input[type=submit] {
  text-align: center;
  padding: 0.2em 0.4em;
  cursor: pointer;
  font-weight: normal;
  font-size: inherit;
  white-space: nowrap;
  border: none;
}

.button {
  text-decoration: none;
  background-color: forestgreen;
  color: white;
}
.button:hover, .button.active {
  cursor: pointer;
}
.button.active {
  background-color: darkgreen;
}
.button:hover {
  background-color: lightgreen;
  color: black;
}
.button.small {
  font-size: 0.9em;
  padding: 0.1em 0.5em;
}
.button.edit {
  border: none;
  background-color: navy;
}
.button.edit:hover {
  background-color: lightblue;
}
.button.new {
  background-color: yellow;
  color: black;
}
.button.new:hover, .button.new.active {
  background-color: lightyellow;
}
.button.delete {
  background-color: red;
}
.button.delete:hover {
  background-color: darkred;
  color: white;
}
.button.export {
  background-color: orange;
}
.button.export:hover, .button.export.active {
  background-color: darkorange;
}

.button-bar {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}

.button-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}
.button-list div.button-item {
  display: flex;
  flex-flow: column wrap;
}

fieldset > .button-box {
  margin: 1rem 0;
}

#navigation .button-list .button-item .button {
  padding: 1rem;
}

/*# sourceMappingURL=buttons.css.map*/