body {
    background-color: #f8f9fa;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.5;
  }
  
  .order-timeline {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .timeline-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f8f9fa;
  }
  
  .timeline-container::-webkit-scrollbar {
    height: 6px;
  }
  
  .timeline-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .timeline-container::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
  }
  
  .timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
    padding: 0 20px;
    min-width: max-content;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: #e2e8f0;
    z-index: 1;
    border-radius: 3px;
  }
  
  .timeline-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    margin: 0 15px;
    transition: transform 0.3s ease;
  }
  
  .timeline-step:hover {
    transform: translateY(-5px);
  }
  
  .timeline-step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    color: #64748b;
  }
  
  .timeline-step.active .timeline-step-marker {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.2);
  }
  
  .timeline-step.completed .timeline-step-marker {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
  }
  
  .timeline-step.completed .timeline-step-marker::after {
    content: '✓';
    font-size: 20px;
  }
  
  .timeline-step-content {
    text-align: center;
    width: 100%;
    padding: 0 10px;
  }
  
  .timeline-step-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    transition: color 0.3s ease;
  }
  
  .timeline-step.active .timeline-step-content h3 {
    color: #10b981;
  }
  
  .timeline-step-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
  }
  
  .timeline-step-date {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
    font-weight: 500;
  }
  
  /* Progress bar between steps */
  .timeline-progress {
    position: absolute;
    top: 24px;
    height: 3px;
    background-color: #10b981;
    z-index: 1;
    border-radius: 3px;
    transition: width 0.5s ease;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .timeline-step {
      min-width: 120px;
      margin: 0 10px;
    }
    
    .timeline-step-marker {
      width: 40px;
      height: 40px;
    }
    
    .timeline-step-content h3 {
      font-size: 14px;
    }
    
    .timeline-step-content p {
      font-size: 12px;
    }
  }
  
  /* Optional: Add pulse animation for active step */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
  }
  
  .timeline-step.active .timeline-step-marker {
    animation: pulse 2s infinite;
  }


  /* Styles pour la carte d'actions */
.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    border: none;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  }
  
  .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
  }
  
  .card-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .d-flex.gap-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  /* Styles pour les boutons */
  .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    cursor: pointer;
  }
  
  .btn-primary {
    background-color: #10b981;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #0ea271;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
  }
  
  .btn-warning {
    background-color: #f59e0b;
    color: white;
  }
  
  .btn-warning:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
  }
  
  .btn-danger {
    background-color: #ef4444;
    color: white;
  }
  
  .btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
  }
  
  /* Animation subtile pour le clic sur les boutons */
  .btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  /* Media queries pour la responsivité */
  @media (max-width: 768px) {
    .d-flex.gap-2 {
      flex-direction: column;
      gap: 10px;
    }
    
    .btn {
      width: 100%;
    }
  }








  body {
    background-color: white;
    color: #000;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-title {
    font-weight: 600;
    color: #333;
    font-size: 1.25rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.product-description {
    color: #6c757d;
    min-height: 60px;
}

.product-price {
    font-size: 1.1rem;
    color: #28a745;
    font-weight: bold;
}

.product-stock {
    font-size: 0.9rem;
    color: #6c757d;
}

.product-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f8f9fa;
}

.page-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-bottom: 30px;
    border-radius: 8px;
}

.btn-view {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-view:hover {
    background-color: #138496;
    border-color: #117a8b;
}

.btn-edit {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.btn-edit:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #212529;
}

.action-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.action-buttons .btn {
    flex: 1;
    margin: 0 5px;
}

.empty-products {
    text-align: center;
    padding: 50px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}