/* css styles */

body {
  line-height: 1.65;
}

blockquote {
  border-left: 4px solid #4472c4;
  padding-left: 1rem;
  color: #444;
  font-style: italic;
}

.small-note {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.bar-chart {
  max-width: 760px;
  margin: 1.5rem 0;
}

.bar-row {
  margin-bottom: 1rem;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.bar-track {
  width: 100%;
  height: 1rem;
  background: #e9ecef;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4472c4, #6aa6ff);
  border-radius: 999px;
}

.contribution-heatmap {
  display: grid;
  grid-template-rows: repeat(7, 12px);
  grid-auto-flow: column;
  grid-auto-columns: 12px;
  gap: 3px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.contribution-heatmap p {
  display: contents;
}

.contribution-day {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  outline: 1px solid rgba(27, 31, 35, 0.06);
}

.level-0 { background-color: #ebedf0; }
.level-1 { background-color: #9be9a8; }
.level-2 { background-color: #40c463; }
.level-3 { background-color: #30a14e; }
.level-4 { background-color: #216e39; }

table {
  width: 100%;
}
