:root {
  --meetup-red: #f65858;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.table-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  background-color: white;
}

.table-cell:hover {
  background-color: #f9fafb;
}

.arrow {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #9ca3af;
  flex-shrink: 0;
  width: 20px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--meetup-red);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s;
}

.back-button:hover {
  color: #d32d2d;
}

.back-button svg {
  margin-right: 8px;
}

#repoLink {
  display: block;
  margin-top: 24px;
  color: var(--meetup-red);
  text-decoration: none;
}

#repoLink:hover {
  text-decoration: underline;
}

#licenseText {
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  background-color: #f9fafb;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
