/* Tutorial Page Styles */
.tutorial-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.tutorial-header {
  text-align: center;
  margin-bottom: 40px;
}

.tutorial-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.tutorial-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0;
}

.tutorial-content {
  margin-bottom: 40px;
}

.tutorial-section {
  margin-bottom: 30px;
}

.tutorial-section h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.tutorial-section p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.tutorial-section ul {
  margin-left: 20px;
}

.tutorial-section li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #555;
}

.tutorial-board-preview {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  justify-content: center;
}

.tutorial-column {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tutorial-column.todo {
  background-color: #fff3cd;
  border: 2px solid #ffeaa7;
}

.tutorial-column.in-progress {
  background-color: #cce5ff;
  border: 2px solid #99d6ff;
}

.tutorial-column.done {
  background-color: #d4edda;
  border: 2px solid #c3e6cb;
}

.tutorial-column h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.tutorial-column p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.tutorial-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.tutorial-button {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.tutorial-button.primary {
  background-color: #007bff;
  color: white;
}

.tutorial-button.primary:hover {
  background-color: #0056b3;
}

.tutorial-button.secondary {
  background-color: #6c757d;
  color: white;
}

.tutorial-button.secondary:hover {
  background-color: #545b62;
}