.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
    overflow: hidden; /* pour que les coins arrondis fonctionnent correctement */
}

.table th,
.table td {
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: #f3f4f6;
    transition: background-color 0.2s;
}