html {
  font-size: 1.5em;
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
  /*background: #DDC;*/
  background: #334;
  color: white;
  margin: 0;
  padding: 0;
}
a {
  color: #FFC
}
a:visited {
  color: #CCC;
}
nav {
  /*background: rgba(0,0,0,.1);*/
  /*background: #CCB;*/
  background: rgba(0,0,0,.1);
  color: white;
  padding: 1em;
}
nav a {
  color: inherit;
  text-decoration: none;
}
nav a:hover {
  background: rgba(0,0,0,.1);
}
main {
  padding: .5em;
  margin: 0 auto;
  max-width: 800px;
}
.todo-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
h1 {
  font-size: 1.5rem;
}
.todo-item {
  border-left: 1px solid transparent;
  color: black;
  padding: 1em;
  margin: .5em;
  box-shadow: 3px 3px 5px rgba(0,0,0,.33333);
  /*background: #FFC;*/
  background: #FFA;
  position: relative;
}

form.button-form {
  display: inline;
}

input, button, .button {
  -webkit-appearance: none;
  border: 1px solid rgba(0,0,0,.8);
  font-size: 1rem;
  background: white;
  color: black;
  padding: .25rem .5rem;
}

input[type=button],
input[type=submit],
input[type=reset],
button
{
  background: rgba(0,0,0,.6);
  color: white;
}

input {
  box-sizing: border-box;
}

select {
  font-size: 1.5rem;
}
input.icon-button {
  background: none;
  border: 0;
}

input.incomplete-check {
  /*color: #CCC;*/
  color: rgba(0,0,0,.3);
  font-weight: bold;
}
input.complete-check {
  color: #0B0;
  font-weight: bold;
}

.form-control {
  margin: .25rem 0;
}
.form-control label:first-child {
  display: inline-block;
  width: 7rem;
  text-align: right;
}

.form-control input:first-child {
  margin-left: 7rem;
}

.other-user
{
  /*background: #FDD;*/
  background: #FAA;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
nav ul a {
  display: inline-block;
  margin: 0;
  padding: .5em 1em;
}

/*
ul.account-menu {
  position: absolute;
  display: inline-block;
  background: #CCB;
  box-shadow: 0px 5px 10px rgba(0,0,0,.3333);
}
*/
ul.account-menu li {
  /*display: block;*/
}

.account-menu-item {
  display: inline-block;
}
.account-menu-item > *{
  display: inline-block;
}
.account-menu-item:hover ul.account-menu {
  /*display: block;*/
}
.error-messages {
  color: red;
  margin-left: 7rem;
}
.submenu {
  display: inline-block;
}

input[type=submit].delete-icon {
  color: red !important;
}

.todo-item .delete-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.user-nav-list {
  display: block;
  list-style: none;
}
.user-nav-list > li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.user-nav-list > li > a {
  display: block;
  margin: 0;
  padding: .25em .5em;
}
.todo-due {
  color: rgba(0,0,0,.5);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: .25em .5em;
}
.todo-item a {
  color: #306;
}
.todo-item a:visited {
  color: #666;
}
.todo-item.completed {
  border-left-color: green;
}
.todo-item.confirmed {
  background: green;
}
