body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #12161C;
  color: #dfe6ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  color: #00d26a;
  font-size: 2.5rem;
  margin-top: 50px;
  font-weight: bold;
  margin-bottom: 5px;
}

h2 {
  font-size: 20PX;
  margin: 10px 0 30px;
  font-weight: bold;
}

.container {
  background-color: #1e2430;
  border-radius: 10px;
  padding: 30px 20px;
  width: 89%;
  max-width: 700px;
}

.note {
  font-size: 0.95rem;
  color: #a0aec0;
  margin-bottom: 10px;
  background-color: #2d3748;
  padding: 10px;
  border-left: 4px solid #4caf50;
  border-radius: 5px;
  margin-top: -15px;
  text-align: start;
}

.link-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3443;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 5px 0;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  height: 15px;
  font-size: 15px;
  line-height: 1;
  border: 1px solid #3c4556;
  /* subtle but visible */
}

a {
  text-decoration: none;
}

.link-box:hover {
  background-color: #3b465a;
}

.status {
  color: #00d26a;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.highlight-text {
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.highlight-text span {
  color: #00d26a;
  font-weight: bold;
}

.highlight-text .green {
  color: #00d26a;
}

.highlight-text .blue {
  color: #00bfff;
  font-weight: bold;
}

img.preview {
  margin-top: 30px;
  width: 100%;
  border-radius: 10px;
}

.post-icons {
  display: none;
}

.article-section {
  text-align: left;
  margin-top: 30px;
  background-color: #1e2430;
  padding: 0px;
  border-radius: 10px;
  color: #dfe6ee;
  line-height: 1.7;
  font-size: 1rem;
}

.article-section h2 {
  color: #00d26a;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-section h3 {
  color: #00d26a;
  font-size: 1.2rem;
  margin-top: 20px;
}

.article-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.article-section li {
  margin-bottom: 10px;
}

.article-section strong {
  margin-bottom: 10px;
  color: #00d26a;
}
