/* =============================== */
/*   ADMIN DASHBOARD – TABLES      */
/* =============================== */

.table-autorisations {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}
.table-autorisations th,
.table-autorisations td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}
.table-autorisations th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}
.table-autorisations tr:last-child td {
    border-bottom: none;
}
.table-autorisations td select {
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fdfdfd;
    transition: all 0.2s;
}
.table-autorisations td select:focus {
    border-color: #027b9a;
    outline: none;
}
.pagination {
    margin-top: 30px;
    text-align: center;
}
.pagination-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background-color: #eee;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.pagination-link:hover {
    background-color: #ccc;
}
.pagination-link.active {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}
