.content-header {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.content-controls {
  display: flex;
  gap: 10px;
}

.view-toggle, .sort-select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

.view-toggle:hover, 
.sort-select:hover {
  border-color: #bbb;
}

.features-container {
  margin-top: 20px;
}

.card-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.list-view {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-view .feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.list-view .feature-info {
  flex: 1;
}

.list-view .feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 5px;
}

.list-view .feature-description {
  color: #666;
  font-size: 14px;
}

.list-view .feature-status {
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 10px;
}

.list-view .feature-actions {
  display: flex;
  gap: 10px;
}

.list-view .action-btn {
  padding: 6px 12px;
  font-size: 13px;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
}

.empty-state-icon {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state-text {
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.create-first-btn {
  padding: 10px 20px;
  background-color: #1890ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}

.create-first-btn:hover {
  background-color: #40a9ff;
} 