/* Tableau */
.table-competences {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

/* Bordures propres */
.table-competences,
.table-competences th,
.table-competences td {
    border: 1px solid #cbd5e1;
}

/* En-tête BTS */
.table-competences th {
    background-color: #1e3a8a;
    color: white;
    padding: 10px;
    font-size: 13px;
    text-align: center;
}

/* Cellules */
.table-competences td {
    padding: 10px;
    font-size: 13px;
    text-align: center;
}

/* Première colonne plus lisible */
.table-competences td:first-child {
    text-align: left;
}

/* Ligne section */
.table-competences tr:nth-child(2) td {
    background-color: #f1f5f9;
    font-weight: bold;
}

/* Hover léger (autorisé dans portfolio) */
.table-competences tbody tr:hover {
    background-color: #f8fafc;
}

/* Boutons preuve (les X) */
.table-competences a {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.table-competences a:hover {
    background-color: #1d4ed8;
}

/* Bas du tableau (rendu BTS propre) */
.table-competences tr:last-child td {
    border-bottom: 2px solid #1e3a8a;
}