/* Conteneur principal */
  .product-management-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Titre de page */
  .page-title {
    color: #075e54;
    font-weight: 600;
    margin: 0;
  }

  /* Barre de statistiques */
  .stats-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .stat-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 120px;
  }

  .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #075e54;
    display: block;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #666;
  }

  /* Tableau des produits */
  .product-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .product-table th {
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
  }

  .product-table td, .product-table th {
    padding: 12px 15px;
    vertical-align: middle;
  }

  .product-table tr:hover {
    background-color: #f8f9fa;
  }

  /* Miniature produit */
  .product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
  }

  .no-image-placeholder {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
  }

  /* Badges */
  .stock-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    background: #e8f5e9;
    color: #2e7d32;
  }

  .stock-badge.low-stock {
    background: #fff3e0;
    color: #e65100;
  }

  .stock-badge.out-of-stock {
    background: #ffebee;
    color: #c62828;
  }

  .details-btn {
        background: #e9ecef;
        margin-right: 8px;
    }


    .details-btn:hover {
        background: #075e54;
        color: white;
    }

  .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .status-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .status-badge.low-stock {
    background: #fff3e0;
    color: #e65100;
  }

  .status-badge.out-of-stock {
    background: #ffebee;
    color: #c62828;
  }

  /* Boutons d'action */
  .action-buttons {
    white-space: nowrap;
  }

  .action-buttons .btn {
    margin-right: 5px;
  }

  /* État vide */
  .empty-state {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .empty-icon {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 20px;
  }

  .empty-state h4 {
    color: #495057;
    margin-bottom: 10px;
  }

  .empty-state p {
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto 20px;
  }

  /* Liens de navigation */
  .management-links {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .management-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s;
  }

  .management-link:hover {
    background: #075e54;
    color: white;
    transform: translateY(-2px);
  }

  .management-link i {
    font-size: 1.1rem;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .product-table {
      display: block;
      overflow-x: auto;
    }

    .stats-bar {
      justify-content: center;
    }

    .management-links .row {
      flex-direction: column;
    }
  }

  @media (max-width: 576px) {
    .page-title {
      font-size: 1.5rem;
    }

    .d-flex {
      flex-direction: column;
      gap: 15px;
    }

    .btn-primary {
      width: 100%;
    }
  }