/* Daily tracker layout */
body {
  font-family: Arial, sans-serif;
  font-size: 13px;
  background: #f5f5f5;
}
.page {
  max-width: 900px;
  margin: 20px auto;
  padding: 15px 20px 25px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}
h1, h2 {
  margin: 6px 0;
}
.sub {
  font-size: 11px;
  color: #555;
  margin-bottom: 6px;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}
.nav-bar a {
  text-decoration: none;
  color: #0066cc;
}
.nav-bar .nav-date {
  font-weight: bold;
}
.export-links {
  font-size: 11px;
  margin-bottom: 6px;
}
.export-links a {
  color: #0066cc;
  text-decoration: none;
}
.export-links a:hover,
.nav-bar a:hover {
  text-decoration: underline;
}

/* Supplements block-style, closer to original sheet */
.block {
  margin-bottom: 8px;
}
.supp-line {
  margin-bottom: 3px;
  font-size: 12px;
}
.supp-note {
  font-size: 11px;
  color: #777;
  margin-left: 4px;
}
.circles form {
  display: inline;
}
.dot {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0 2px;
}
.dot-on {
  font-weight: bold;
}
.dot-off {
  color: #aaa;
}

/* Daily form */
.day-form {
  margin-top: 8px;
}
.line {
  margin: 4px 0;
}
.target {
  color: #777;
  font-size: 11px;
}
.lt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.lt-item {
  font-size: 11px;
}
.save-line {
  margin-top: 8px;
}
.save-line button {
  padding: 4px 10px;
  font-size: 12px;
}
textarea {
  font-family: inherit;
  font-size: 12px;
}
