/* mamstats.css */
.stats-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    font-family: "Helvetica", Arial, sans-serif;
}
.stats-container h3 {
    color: #000; /* noir */
    border-bottom: 2px solid #000000; /* noir */
    padding-bottom: 5px;
    margin-bottom: 0; /* colle h3 au tableau */
    margin-top: 25px;
}
.stats-container ul {
    list-style-type: none;
    padding-left: 0;
}
.stats-container ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}
.stats-container ul li:last-child {
    border-bottom: none;
}
.mauvais-payeurs li {
    color: #c0392b;
    background: #fdecea;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 3px; /* colle h3 au tableau */
}
.stats-table th, .stats-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
.stats-table th {
    background-color: #000000; /* noir */
    color: white;
}
@media (max-width: 600px) {
    .stats-container, .stats-table {
        width: 100%;
    }
}
