body {
    background: #f0f2f5;
}

.card {
    border-radius: 12px;
    width: 100%;
}

/* Garde la table propre */
table {
    table-layout: fixed;
    width: 100%;
}

/* Comportement normal pour les colonnes */
table th,
table td {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Première colonne plus large */
table td:first-child,
table th:first-child {
    width: 45%;
    /* ajuste selon tes besoins */
    max-width: 45%;
}

/* Autorise le wrap partout sauf sur la colonne "Nom" */
td.torrent-name {
    max-width: 260px;
    /* ajuste selon ton design */
}