/* CSS for Article Selection Menu */
.menu-title {
  color: #5c3a21;
  text-align: center;
  margin: 2rem 0;
  font-size: 1.5rem;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.article-item {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(92, 58, 33, 0.05);
}

.article-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 58, 33, 0.15);
  border-color: #8b5a2b;
}

.article-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5c3a21;
}

.article-arrow {
  color: #bfa58f;
  font-size: 1.5rem;
}

/* Back to Menu Button */
.back-to-menu-btn:hover {
  text-decoration: underline;
}

/* Adjust layout for menu view */
#menu-view {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 2rem;
}
