/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 22 2026 | 16:17:35 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  padding: 3rem 1.5rem;
}*/

.containerStep {
  max-width: 1600px;
  margin: 0 auto;
}

/* header {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

header p {
  font-size: 1.1rem;
  opacity: 0.9;
} */

.workflow-container {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow-x: auto;
  margin-bottom: 2rem;
}

.workflow {
  display: flex;
  align-items: stretch;
  min-width: min-content;
  position: relative;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.step-item {
   display:block;	
	margin:20px;
	width : 200px;
	
}
.step-item li {
	font-size:14px; 
}
.step-header {
  height:80px;
  margin:10px 10px 10px 0px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 2rem 2.5rem;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  position: relative;
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-content {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  height: 500px;
  padding: 2rem 2.5rem;
  clip-path: polygon(0 0, 100% 0, 98% 50%, 100% 100%, 0 100%, 2% 50%);
  position: relative;	
  min-width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/*
.step:first-child .step-content {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  padding-left: 2rem;
}

.step:last-child .step-content {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
  padding-right: 2rem;
} */
.step-header:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 10;
}


.step-content:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 10;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  border: 3px solid white;
}

.step-title {
  margin:0px 0px 0px 20px; 
  /* font-size: 2.3rem; */
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
}

.step-duration {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.2);
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Variantes de couleurs */
.step:nth-child(1) .step-content {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.step:nth-child(2) .step-content {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.step:nth-child(3) .step-content {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.step:nth-child(4) .step-content {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.step:nth-child(5) .step-content {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.step:nth-child(6) .step-content {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

.step:nth-child(7) .step-content {
  background: linear-gradient(135deg, #30cfdf, #33086f);
}



.step:nth-child(1) .step-header {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.step:nth-child(2) .step-header {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.step:nth-child(3) .step-header {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.step:nth-child(4) .step-header {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.step:nth-child(5) .step-header {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.step:nth-child(6) .step-header {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

.step:nth-child(7) .step-header {
  background: linear-gradient(135deg, #30cfdf, #33086f);
}


/* Animations d'entrée */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step {
  animation: slideInRight 0.5s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }
.step:nth-child(6) { animation-delay: 0.6s; }

/* Éditeur */
.editor-section {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

.editor-section h2 {
  color: #667eea;
  margin-bottom: 1rem;
}

.editor-toggle {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.editor-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.editor-form {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}

.editor-form.active {
  display: block;
}

.step-editor {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.step-editor h3 {
  color: #667eea;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #4b5563;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.btn-primary {
  background: #10b981;
  color: white;
}

.btn-primary:hover {
  background: #059669;
}

.btn-secondary {
  background: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background: #4b5563;
}

.btn-add {
  background: #3b82f6;
  color: white;
}

.btn-add:hover {
  background: #2563eb;
}

.btn-remove {
  background: #ef4444;
  color: white;
}

.btn-remove:hover {
  background: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 2rem 1rem;
  }
  
  .workflow-container {
    padding: 2rem 1rem;
  }
  
  .step-content {
    min-width: 220px;
    padding: 1.5rem 2rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
}

/* Scroll hint */
.scroll-hint {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}