body {
  font-family: Arial, sans-serif;
  margin: 40px;
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #ccc;
  margin-top: 24px;
  margin-bottom: 16px;
}

.tab-button {
  padding: 10px 16px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-size: 16px;
}

.tab-button.active {
  background: #333;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 800px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "✅";
  margin-right: 8px;
}

.image-container img {
  width: 200px;
  height: auto;
}

.clickable-gif {
  max-width: 25%;
  height: auto;
  cursor: pointer;
  display: block;
}
