body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f4f6f9;
}

.titre_tableau {
    text-align: center;
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    background-color: white;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #2c3e50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e6f2ff;
}

img {
    width: 60px;
    height: auto;
    border-radius: 6px;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=DM+Sans:wght@300;400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #333;
  background: #fafaf8;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #111;
  margin-bottom: .75rem;
}

h1, h2{
    text-align: center;
}

a { color: #8b6f47; text-decoration: none; }
a:hover { opacity: .65; }
p { color: #666; margin-bottom: 1rem; }

header { 
    border-bottom: 1px solid #e5e5e5; 
    background: #fafaf8; 
    position: sticky; 
    top: 0; }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-main { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #111; }

nav a {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #888;
  margin-left: 1.75rem;
}

nav a:hover { color: #111; opacity: 1; }



main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

footer {
  border-top: 1px solid #e5e5e5;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #aaa;
  background: #f4f3ef;
}

.footer-brand { font-family: 'Playfair Display', serif; color: #333; }
.footer-brand span { color: #8b6f47; }
