body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #ffffff;
}


.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ séparation gauche / droite */
    width: 100%;
    margin-bottom: 15px;
}

#searchInput {
    padding: 6px 10px;
    width: 250px;
}


.button,
.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 16px;
    background-color: #d10000;
    color: #ffffff;

    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 2px #a60000 inset;

    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1;

    text-decoration: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

a.button,
a.button:link,
a.button:visited
 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 16px;
    background-color: #d10000;
    color: #ffffff;

    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 2px #a60000 inset;

    text-decoration: none;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

a.button:hover {
    background-color: #a60000;
    color: #ffffff;
}

.button:hover,
.btn-danger:hover {
    background-color: #a60000;
}

/* Ligne cliquable */
.clickable-row {
    cursor: pointer;
    transition: background-color 0.15s ease;
}

/* Effet hover */
.clickable-row:hover {
    background-color: #e9f2ff;
}


.table-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.rows-per-page button {
    margin-left: 5px;
    padding: 4px 8px;
    cursor: pointer;
}

.pagination {
    margin-top: 10px;
    text-align: right;
}

.pagination button {
    margin: 0 2px;
    padding: 4px 8px;
    cursor: pointer;
}

.table-footer {
    display: flex;
    justify-content: space-between; /* ✅ gauche / droite */
    align-items: center;            /* ✅ alignement vertical */
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
}

.rows-per-page button {
    margin-left: 4px;
    padding: 4px 8px;
    cursor: pointer;
}





