:root {
  --color-gray: rgba(0, 0, 0, 0.1);
  --color-gray2: rgba(0, 0, 0, 0.5);
  --color-white: #ffffff;
  --color-black: #000000;
  --color-nettle: #1e5139;
  --color-sprout: #d9e9bd;
  --color-oat: #ca953a;
  --color-barley: #f9eeda;
  --color-salmon: #e29f85;
  --color-jade: #08a16a;
  --color-buttonHover: #c04c00; }

html {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 62.5%;
  word-spacing: 0.1rem;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-size: 1.6rem; }

a {
  text-decoration: none;
  color: #1e5139; }
  a:hover {
    text-decoration: underline; }
  a.nuxt-link-exact-active {
    font-weight: bold; }

table {
  width: 100%;
  border-spacing: 0rem;
  margin-bottom: 2rem; }
  table th {
    text-align: left;
    background: rgba(0, 0, 0, 0.1); }
  table td,
  table th {
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    vertical-align: top; }
  table tr {
    background: #f9eeda; }
    table tr:hover {
      background: transparent; }
      table tr:hover td,
      table tr:hover th {
        background: transparent; }
    table tr.hide {
      display: none; }

.title {
  padding-bottom: 1rem;
  display: block; }

ul {
  list-style: none;
  padding-left: 2rem; }
  ul li {
    font-size: small;
    display: block;
    margin-bottom: 0.5rem; }
    ul li::before {
      content: "- "; }

pre {
  font-size: 1.2rem; }

.tools {
  display: flex;
  justify-content: space-between; }
  .tools .filter {
    text-align: right; }
    .tools .filter .active input {
      background-color: yellow; }
    .tools .filter input {
      width: 30rem; }

button,
.button {
  font: 400 1.4rem Arial;
  display: inline-block;
  padding: 0 2rem;
  min-width: 10rem;
  min-height: 3rem;
  cursor: pointer;
  background: #1e5139;
  color: #ffffff;
  font-weight: bold;
  border: none;
  text-align: center;
  text-decoration: none;
  line-height: 3rem; }
  button.cancel,
  .button.cancel {
    background: #e29f85; }
  button:hover, button:focus,
  .button:hover,
  .button:focus {
    background: #08a16a; }

.link,
button.link {
  display: inline;
  min-width: auto;
  min-height: auto;
  color: #1e5139;
  background: none;
  line-height: inherit;
  padding: inherit; }
  .link:hover, .link:focus,
  button.link:hover,
  button.link:focus {
    color: #08a16a;
    text-decoration: underline; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center; }
  .modal .content {
    padding: 2rem;
    background: #ffffff;
    max-width: 80rem;
    width: 100%;
    min-height: 30rem; }
    .modal .content .header {
      display: flex;
      margin-bottom: 0.5rem; }
      .modal .content .header .title {
        font-weight: bold;
        border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem; }
    .modal .content .footer {
      display: flex;
      margin-top: 0.5rem; }
    .modal .content textarea {
      width: 100%;
      height: 100%;
      min-height: 20rem; }
    .modal .content input {
      width: 100%; }

.loader {
  display: inline-block;
  width: 8rem;
  height: 8rem; }

.loader:after {
  content: " ";
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  margin: 0.8rem;
  border-radius: 50%;
  border: 0.6rem solid #1e5139;
  border-color: #1e5139 transparent #1e5139 transparent;
  animation: lds-dual-ring 1.2s linear infinite; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

header {
  display: flex;
  padding: 0.5rem; }
  header .logout {
    margin-left: auto; }

nav {
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem; }
  nav .title {
    font-size: 1.2rem;
    font-weight: bold; }
  nav ul {
    padding-left: 0;
    list-style: none;
    display: flex; }
    nav ul li {
      margin-right: 1rem;
      font-size: 1.4rem; }
      nav ul li::before {
        content: ""; }
    nav ul a {
      color: var(--color-nettle);
      text-decoration: none;
      font-size: 1.4rem; }
      nav ul a:hover {
        text-decoration: underline; }
      nav ul a.nuxt-link-exact-active {
        font-weight: bold; }

input {
  font-weight: normal;
  font-size: 1.6rem;
  padding: 0.6rem; }

label {
  margin-bottom: 2rem;
  font-weight: bold;
  display: block;
  font-size: 1.4rem; }
  label input {
    margin-top: 0.4rem; }
