/* Changelog page specific styles */

body {
  font-size: 1.3rem;
  line-height: 1.7;
}

.changelog-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.changelog-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 2px solid #1f1c24;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  display: block;
  /* Prevent layout shift by reserving space for the image */
  min-height: 400px;
}

.changelog-entry {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9e6ef;
}

.changelog-entry:last-child {
  border-bottom: none;
}

.version-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f1c24;
  margin-bottom: 0.5rem;
  text-align: center;
}

.version-date {
  font-size: 1.25rem;
  color: #6b6e76;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f1c24;
  margin: 1.5rem 0 0.5rem 0;
  text-transform: capitalize;
  text-align: center;
}

.changelog-list {
  margin: 0.5rem 0 1rem 0;
  color: #1f1c24;
  text-align: left;
  display: block;
  padding-left: 1.25rem;
  list-style-type: disc;
  list-style-position: outside;
}

.changelog-list li {
  margin-bottom: 0.25rem;
  list-style-type: disc;
}

