/* old basic style, compact, upper-left, very 2000s */

body {
  background-color: #f5f5e9; /* slight yellow like old pages */
  margin: 0;
  padding: 0;
}

#wrapper {
  width: 380px;
  margin: 8px;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid #000000;
}

h1 {
  text-align: left;
  font-size: 16px;
  margin: 0 0 2px 0;
}

.small-note {
  text-align: left;
  font-size: 9px;
  color: #666666;
  margin-bottom: 5px;
}

hr {
  margin: 6px 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

.quote {
  margin: 4px 0;
  padding: 3px 0 4px 0;
  border-bottom: 1px dotted #bbbbbb;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.1s linear, transform 0.08s linear;
}

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

.quote-text {
  font-size: 12px;
  margin-bottom: 2px;
}

.quote-author {
  font-size: 10px;
  color: #555555;
  text-align: right;
}

/* click effect (tiny "lag" feel) */
.quote.clicked {
  background-color: #eef1ff;
  transform: translateY(1px);
}

marquee {
  font-size: 10px;
  color: #555555;
  margin-top: 4px;
}