body {
  margin: 0;
  font-family: Georgia, serif;
  background: #faf8f5;
  color: #222;
}

.container {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

header {
  text-align: center;
}

h1 {
  font-weight: normal;
  letter-spacing: 0.05em;
}

.tabs {
  margin: 20px 0;
}

.tabs button {
  padding: 8px 18px;
  border: none;
  background: #e8e5df;
  cursor: pointer;
  font-family: inherit;
}

.tabs button.active {
  background: #fff;
  border-bottom: 2px solid #222;
}

.date {
  font-style: italic;
  color: #666;
}

.prompt {
  font-weight: normal;
  margin-bottom: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
}

.priority {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.priority span {
  width: 30px;
  color: #aaa;
}

.priority input {
  flex: 1;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  padding: 6px;
}

.priority input:focus {
  outline: none;
  border-color: #222;
}

.reflection {
  margin-top: 30px;
}

.reflection label {
  display: block;
  margin-bottom: 8px;
  color: #777;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.reflection textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  resize: none;
}

button#saveBtn {
  margin-top: 30px;
  padding: 10px 20px;
  font-family: inherit;
  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

#entries {
  margin-top: 20px;
}

.entry {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.entry h3 {
  margin: 0 0 8px;
  font-weight: normal;
}