/* Conteneur principal */
.mhc-container { width: 100%; max-width: 1200px; margin: 40px auto; font-family: "Montserrat", sans-serif; }

/* Barre de recherche */
.mhc-search-header { margin-bottom: 30px; }
.mhc-search-input-wrapper input { 
    width: 100%; padding: 15px 20px; font-size: 16px; 
    border: 1px solid #ddd; border-radius: 10px; background: #fff;
}

/* Layout flexbox (Sidebar + Contenu) */
.mhc-main-layout { display: flex; gap: 40px; align-items: flex-start; }

/* Sidebar */
.mhc-sidebar { width: 250px; flex-shrink: 0; }
.mhc-filter-group { background: #f9f9f9; padding: 20px; border-radius: 12px; border: 1px solid #eee; }
.mhc-filter-group h4 { margin-top: 0; margin-bottom: 15px; font-size: 16px; font-weight: bold; }
.mhc-filter-group label { display: block; margin-bottom: 10px; cursor: pointer; color: #555; }

/* Tableau principal */
.mhc-content { flex-grow: 1; overflow-x: auto; }
.mhc-results-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
.mhc-results-table thead th { text-align: left; padding: 10px 20px; color: #888; text-transform: uppercase; font-size: 12px; font-weight: 600; }
.mhc-results-table tbody tr { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); cursor: pointer; transition: transform 0.2s; }
.mhc-results-table tbody tr:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.mhc-results-table td { padding: 15px 20px; vertical-align: middle; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.mhc-results-table td:first-child { border-left: 1px solid #eee; border-radius: 10px 0 0 10px; }
.mhc-results-table td:last-child { border-right: 1px solid #eee; border-radius: 0 10px 10px 0; }

/* Cellules spécifiques */
.mhc-model-cell { display: flex; align-items: center; gap: 15px; }
.mhc-thumb { width: 60px; height: 60px; border-radius: 8px; background: #f4f4f4; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;}
.mhc-thumb img { width: 100%; height: auto; object-fit: contain; }
.mhc-name strong { font-size: 15px; color: #111; }

/* Badges */
.mhc-stat-cell strong { display: inline-block; padding: 6px 12px; background: #f0fdf4; color: #166534; border-radius: 6px; font-size: 14px; }