/* Journal styles for Linwin website */
.journal-container {
  max-width: 800px;
  margin: 0 auto;
}

.journal-entry {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.journal-entry.active {
  display: block;
}

.journal-date {
  color: var(--heading-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.journal-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.journal-content {
  line-height: 1.8;
}

.journal-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.nav-btn {
  background-color: #23202a;
  color: var(--text-color);
  border: 2px solid var(--link-color);
  padding: 5px 12px;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--link-color);
  color: var(--bg-color);
}

.counter {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--heading-color);
}

.entry-list {
  margin: 30px 0;
  padding: 0;
  list-style-type: none;
}

.entry-list li {
  margin-bottom: 8px;
}

.entry-list a {
  display: block;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.entry-list a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}