* {
  margin: 0;
  padding: 0;
}
body {
  background-image: radial-gradient(circle farthest-side at center, #2c2c2c 0, #141414 100%);
  background-color: #141414;
  color: rgba(255, 255, 255, 1);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  margin-bottom: 50px;
}
body > header {
  background-color: rgb(33, 34, 36);
  height: 56px;
  color: white;
  padding: 0 24px;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flex-grow {
  flex-grow: 1;
}
body > article {
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 32px;
}
body > article > h1 {
  color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgb(56, 56, 56);
  padding-bottom: 5px;
}
.header-info {
  text-align: right;
  font-size: 14px;
  float: right;
}
.currency {
  color: rgb(255, 161, 0);
}
.currency[data-type]::after {
  content: ' ' attr(data-type);
}
#history {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
}
.entry {
  display: flex;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid rgb(56, 56, 56);
}
.entry.canceled > * {
  opacity: 0.3;
}
.memo {
  flex: 4;
}
.memo .note {
  font-size: smaller;
}
.entry > .currency {
  flex: 1;
  text-align: right;
}
.entry > .date {
  flex: 1;
  text-align: right;
}
body.authed .unauthed {
  display: none;
}

body:not(.authed) .authed {
  display: none;
}
