/* static/css/statistique.css */
/* Conteneur */
.content-wrapper{width:100%;max-width:800px;margin:1.6rem auto;padding:0 1rem}
.content-wrapper section{margin-bottom:2rem}
.content-wrapper h2{font-size:1.2rem;margin-bottom:1rem;color:#333}
/* Grille Vue d'ensemble */
.stats-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:.8rem;list-style:none;padding:0;margin:0}
.stats-grid li{background:#fafafa;border:1px solid #ddd;border-radius:4px;padding:.8rem;text-align:center;font-size:.85rem}
.stats-grid li strong{display:block;font-size:.75rem;margin-bottom:.4rem}
/* Tableau Métiers */
.stats-table{width:100%;border-collapse:collapse;display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.stats-table tbody,.stats-table thead{display:contents}
.stats-table tr{background:#fafafa;border:1px solid #ddd;border-radius:4px;padding:.5rem .8rem;font-size:.85rem;display:flex;justify-content:space-between;align-items:center;margin-bottom:.4rem}
.stats-table th,.stats-table td{border:none;padding:0;background:none}
.stats-table th:first-child,.stats-table td:first-child{font-weight:500}
.stats-table th:last-child,.stats-table td:last-child{font-weight:bold;color:#666}
/* Listes bloc */
.stats-list-block{list-style:none;padding:0;margin:0}
.stats-list-block li{margin-bottom:.6rem;font-size:.9rem}
.stats-list-block li strong{margin-right:.4rem}
.stats-list-block a{color:#a76107;text-decoration:none}
.stats-list-block a:hover{text-decoration:underline}
/* Responsive */
@media (max-width:600px){
.stats-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:768px){
.stats-table{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:480px){
.stats-table{grid-template-columns:1fr}
}