/* Categories Helper Shared Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  color: #333;
  line-height: 1.5;
}

.container {
  max-width: 650px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

.page-footer a {
  color: #0066cc;
  text-decoration: none;
}

.page-footer a:hover {
  text-decoration: underline;
}

/* Release Notes Styles */
.release-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  /* text-align: center; */
}

.release-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.release-item:last-child {
  border-bottom: none;
}

.release-header {
  font-size: 1.4em;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.release-changes {
  list-style: disc;
  padding-left: 34px;
  color: #555;
}

.release-changes li {
  margin-bottom: 8px;
  line-height: 1.5;
}
