html, body {
  padding: 0;
  margin: 0;
  font-family: Helvetica-Light, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #2a7ae2;
}

a:visited {
    color: #1756a9;
}

hr {
  border: none;
  border-bottom: 1px solid #eee;
}

.small-form input[type=password], .small-form input[type=email], .small-form input[type=text], .small-form input:not([type]) {
  width: 100%;
  line-height: 2em;
  font-size: 1em;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
}

input[type=submit] {
  width: auto;
  font-size: 1em;
  font-family: inherit;
  border: none;
  background-color: #268bd2;
  color: #fff;
  border-radius: 3px;
  transition: background-color 100ms linear;
}

input[type=submit]:hover {
  cursor: pointer;
}

.tiny-input {
  width: 50px;
}

pre.code {
  border: 1px solid #eee;
  padding: 1px;
  border-radius: 3px;
  background-color: #f8f8ff;
  margin: 3px;
  margin-bottom: 10px;
  padding: 5px;
  overflow-x: auto;
}

.one-line-pre {
  display: block;
  border: 1px solid #eee;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 5px;
}

.site-header {
  z-index: 1;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  background-color: #002b36;
  height: 60px;
  color: #93a1a1;
  display: flex;
  align-content: space-around;
  justify-content: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.site-footer {
  padding: 10px;
  margin-left: 310px;
}

.site-header__logo-link {
  display: block;
  margin: 0px;
  padding: 0px;
  height: 56px;
}

#header-placeholder {
  height: 60px;
}

.small-form--card {
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  border: 1px solid #eee;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  padding: 10px;
  margin-top: 20px;
}

.small-form {
  width: 300px;
}

.small-form__header {
  font-size: 1.5em;
  line-height: 1.5em;
}

.small-form__label {
  line-height: 1.5em;
  font-size: 1em;
}

.small-form__row {
  margin-bottom: 5px;
}

.small-form__message {
  padding: 10px 0px 10px 0px;
}

/*if this is the main form of the page*/
.small-form--page {
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  border: 1px solid #eee;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  padding: 10px;
  margin-top: 20px;
}

.form__row  {
  margin-bottom: 5px;
}

.page {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  max-width: 800px;
  min-height: 320px;
}

.page--wide {
  margin-left: 310px;
  margin-right: 10px;
  max-width: none;
}

.page__section {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.page__section:last-of-type {
  border-bottom: none;
}

.page__header {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.user-owned-entity-list {
  display: flex;
  flex-direction: column;
}

.user-owned-entity-list__item {
  display: block;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  padding: 5px;
  justify-content: space-between;
  color: inherit;
}

.user-owned-entity-list__item:visited {
  color: inherit;
}

.user-owned-entity-list__item-title {
  flex-grow: 1;
  color: #2a7ae2;
}

.user-owned-entity-list__item-created, .user-owned-entity-list__item-modified {
  width: 140px;
  text-align: center;
}

.user-owned-entity-list__item:first-child {
  margin-left: 0px;
}

.user-owned-entity-list__item > * {
  margin-left: 5px;
}

.user-owned-entity-list__item--header .user-owned-entity-list__item-title {
  text-align: center;
}

input.button, .button {
  font-size: 1em;
  font-family: inherit;
  border: none;
  background-color: #268bd2;
  color: #fff;
  border-radius: 3px;
  transition: background-color 100ms linear, transform 100ms linear;
  padding: 5px;
  display: inline-block;
  color: #fff;
}

.button:visited {
  color: #fff;
}

input.button--delete, .button--delete {
  background-color: #dc322f;
}

.button--create {
  
}

.error-message {
  color: #dc322f;
  font-weight: bold;
}

.vertical-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.warning {
  color: #F44336;
}

@media only screen and (max-width: 1420px) {
  .page {
    margin-left: 310px;
  }
  .site-footer {
    margin-left: 310px;
    max-width: 800px;
  }
}

@media only screen and (max-width: 1120px) {
  .page {
    width: auto;
    max-width: initial;
    margin-right: 10px;
    margin-left: 10px;
  }
  .site-footer {
    margin: 0px;
    max-width: initial;
  }
}

@media only screen and (max-width: 480px) {
  html,body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.8em;
  }
  .page {
  }
}

@media only screen and (max-width: 400px) {
  .site-header {
    justify-content: flex-start;
  }
  .site-header__logo-link {
    margin-left: 40px;
  }
  
  .site-header__logo-link img {
    height: 56px;
    margin-top: 2px;
  }
}