/* Step navigation styling */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #4cc9f0;
    --warning-color: #f72585;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
.step-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .step {
    display: none;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 20px;
    background-color: white;
  }
  
  .step.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }
  
  .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    counter-reset: step;
  }
  
  .step-indicator-item {
    text-align: center;
    position: relative;
    margin: 0 20px;
    flex: 0 0 auto;
  }
  
  .step-indicator-item::before {
    counter-increment: step;
    content: counter(step);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #555;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
  }
  
  .step-indicator-item.active::before {
    background-color: #5cb85c;
    color: white;
  }
  
  .step-indicator-item.completed::before {
    background-color: #5cb85c;
    color: white;
  }
  
  .step-indicator-item::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% + 10px);
    width: 40px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: -1;
  }
  
  .step-indicator-item:last-child::after {
    display: none;
  }
  
  button {
    padding: 10px 20px;
    background: linear-gradient(to right, var(--success-color), #3a86ff);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  button:hover {
   
    transform: translateY(-2px);
  }
  
  button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
  }
  
  /* Image container styling */
  .image-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  
  .image-container img:hover {
    background: linear-gradient(to right, var(--success-color), #bfc7d4);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .image-container img.selected {
    border-color: #4b8bf3;

    transform: translateY(-5px);
  }
  
  /* Form styling */
  #editForm {
    margin-bottom: 25px;
  }
  
  #editForm input {
    display: block;
    width: 92%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 5px;
  }
  
  #editForm input:focus {
    border-color: #5cb85c;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.2);
    outline: none;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #editForm input{
      width: 90%;
    }
    .step-container {
      padding: 15px;
    }
    
    .step-indicator-item {
      margin: 0 10px;
    }
    
    .step-indicator-item::before {
      width: 30px;
      height: 30px;
      line-height: 30px;
    }
    
    .step-indicator-item::after {
      top: 15px;
      left: calc(100% + 5px);
      width: 20px;
    }
    
    .image-container {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
  }
  h3{
    text-align: center;
  }
    /* Add these styles for the progress bar */
    .progress-container {
      display: none;
      width: 100%;
      margin: 20px 0;
    }
    
    .progress-bar {
      width: 100%;
      height: 20px;
      background-color: #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
    }
    
    .progress {
      height: 100%;
      background-color: #4CAF50;
      width: 0%;
      transition: width 0.3s ease;
    }
    
    .progress-text {
      text-align: center;
      margin-top: 5px;
      font-size: 14px;
      color: #555;
    }
    
    /* Style for multiple selection */
    .image-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .image-container img {
      cursor: pointer;
      border: 3px solid transparent;
      max-width: 200px;
      max-height: 200px;
      object-fit: contain;
    }
    
    .image-container img.selected {
      border-color: #4CAF50;
    }
    
    .selection-count {
      margin: 10px 0;
      font-weight: bold;
    }
    
    .download-options {
      margin: 15px 0;
    }
    
    .download-options label {
      margin-right: 15px;
    }
