.sop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.sop-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.sop-short-desc {
  font-size: 18px;
  margin-bottom: 20px;
  color: #7f8c8d;
}

.sop-rules {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #3498db;
  margin-bottom: 30px;
  border-radius: 4px;
}

.sop-rules h3 {
  margin-top: 0;
  color: #2980b9;
}

.sop-stages {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 40px;
}

.stage {
  flex: 1 0 280px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}

.stage h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #d82d5c;
}

.stage > p {
  font-size: 14px;
  margin: 0 0 15px;
  color: #444;
}

.tasks {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.task {
  background: #fff;
  border-left: 4px solid #d82d5c;
  padding: 12px 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #eee;
}

.task-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.task-desc {
  font-size: 13px;
  margin: 4px 0 10px;
  color: #666;
}

.time {
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
}

.tools {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tool-icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.roles {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 4px;
  margin-bottom: 10px;
}

.role-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f0f4ff;
  padding: 4px 8px;
  border-radius: 16px;
  color: #1d4ed8;
  font-size: 12px;
  gap: 6px;
}

.role-badge img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.checklist {
  background: #e7f6f9;
  border-top: 2px solid #40b1d1;
  padding: 12px 10px;
  font-size: 13px;
  border-radius: 6px;
  list-style: none;
  margin-top: auto;
}

.checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.checklist .dashicons {
  color: #27ae60;
  margin-right: 6px;
  font-size: 16px;
}