/* Basic styling for the flowchart list */
.flowchart-list-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.flowchart-list-container h1 {
  color: #333;
  margin-bottom: 20px;
}

.flowchart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flowchart-table th,
.flowchart-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.flowchart-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #495057;
}

.flowchart-table tr:hover {
  background-color: #f5f5f5;
}

.view-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.view-btn:hover {
  background-color: #0069d9;
}

.loading, .error {
  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.error {
  color: #dc3545;
}

.no-data {
  text-align: center;
  padding: 20px;
  color: #6c757d;
}
