body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  padding: 20px;
  background-color: #0d1117;
  color: #c9d1d9;
}

h1, h3 {
  font-weight: 600;
  border-bottom: 1px solid #30363d;
  padding-bottom: .3em;
}

h1 { font-size: 1.8em; color: #f78166; text-align: center; }
h3 { font-size: 1.25em; color: #8b949e; margin-top: 1.5em; }

ul { list-style: none; padding-left: 0; margin: 0; }
li {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 5px;
  transition: background-color 0.2s ease;
}
li:hover { background-color: #21262d; }

.commit-header { display: flex; align-items: center; gap: 8px; }

.commit-icon {
  width: 12px;
  height: 12px;
  background-color: #3fb950;
  border-radius: 50%;
  flex-shrink: 0;
}

.toggle {
  cursor: pointer;
  color: #58a6ff;
  text-decoration: underline;
  font-size: 0.9em;
}

.files {
  font-size: 0.9em;
  color: #8b949e;
  display: none;
  flex-direction: column;
  padding-left: 20px;
}

.azul { color: #58a6ff; font-weight: 500; }
.rojo { color: #ff7b72; font-weight: 500; }
.verde { color: #3fb950; font-weight: 500; }

.verified-badge {
  display: flex;
  align-items: center;
  background-color: #238636;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2em;
  padding: 2px 8px;
  gap: 4px;
  border: 1px solid rgba(240,246,252,0.1);
}

.
