/* General reset and dark mode styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #131313;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styling */
header {
  background-color: #1a1a1a;
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #333;
}

header h1 {
  margin: 0;
  color: #f0f0f0;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-top: 10px;
}

/* Version section */
.version-details {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #2a2a2a;
  border-radius: 8px;
}

.version-details h2 {
  font-size: 1.8rem;
  color: #80c0ff;
}

.release-date,
.description {
  font-size: 1.2rem;
  margin-top: 10px;
}

.feature {
  margin-top: 20px;
}

.feature h3 {
  font-size: 1.5rem;
  color: #80c0ff;
}

.status {
  font-weight: bold;
  margin-top: 5px;
}

/* Statuses */
.feature .status .completed {
  color: #32cd32; /* Lime green for completed */
}

.feature .status .in-progress {
  color: #ffd700; /* Gold for in progress */
}

.feature .status .planned {
  color: #1e90ff; /* Dodger blue for planned */
}

.feature .status .not-started {
  color: #ffa500; /* Orange for not started */
}

.feature .status .deprecated {
  color: #dc143c; /* Crimson red for deprecated */
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a1a1a;
  border-top: 1px solid #333;
  color: #888;
}

footer a {
  color: #80c0ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
