body {
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 2rem;
  background-color: #000;
  color: #00ff00;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #00ff00;
  text-shadow: 0 0 3px #00ff00, 0 0 5px #00ff00;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-container {
  background-color: #000;
  border: 1px solid #00ff00;
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Header with title + toggle button */
.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ff00;
}

.toggle-btn {
  background: none;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: 'Share Tech Mono', monospace;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
}

.container-meta {
  font-size: 0.75rem;
  color: #00ff00;
  opacity: 0.8;
  font-style: italic;
}

/* Log content */

.blog-container {
  min-height: 120px;   /* <- ensures visible box */
}

.container-content {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #00ff00;
  white-space: pre-wrap;
  max-height: 500px;
  overflow-y: auto;
  transition: max-height 0.3s ease;
  border-top: 1px dashed #00ff00;
  padding-top: 0.5rem;
}

.collapsed {
  max-height: 0px !important;
  overflow: hidden;
}

.pagination {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px dashed #00ff00;
  padding-top: 1rem;
}

.pagination button {
  background: none;
  border: 1px solid #00ff00;
  color: #00ff00;
  font-family: 'Share Tech Mono', monospace;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: default;
}

#pageIndicator {
  margin: 0 1rem;
}