body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.5;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Liens */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Menu de Filtres, Formulaires */
p, form {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

input[type="text"], select {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

button {
    background-color: #34495e;
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #2c3e50;
}

/* Le Tableau */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95rem;
}

td {
    border-bottom: 1px solid #eaeded;
    color: #2c3e50;
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    color: #7f8c8d;
    font-weight: 500;
    border-bottom: 2px solid #eaeded;
}



/* Changement de couleur souris */
tr:hover td {
    background-color: #f8f9fa;
}

/* Modifier / Supprimer */
.actions a {
    font-size: 0.85rem;
    margin-left: 10px;
    color: #7f8c8d;
}
.actions a:hover {
    color: #c0392b;
}



