/* --------- TYPOGRAPHIE GÉNÉRALE --------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body, .md-typeset {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  margin-top: 1rem;
}

/* --------- EN-TÊTE --------- */
.md-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --------- TABLES --------- */
.md-typeset__table, .md-typeset__table * {
  width: 100%;
}

.md-typeset__table > table {
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 1em;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

table th, table td {
  padding: 0.75em;
  vertical-align: top;
  border-bottom: 0.5px solid #e0e0e0;
  text-align: left;
}

table thead {
  background-color: #222;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

table td img {
  max-width: 60px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

table td a {
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

table td a:hover {
  text-decoration: underline;
  color: var(--md-primary-fg-color);
}


/* --------- TABLE WIDTHS --------- */
table td:first-child, table th:first-child {
  width: 10px;
}

table td:not(:first-child):not(:nth-child(5)),
table th:not(:first-child):not(:nth-child(5)) {
  width: 150px;
}


/* --------- SÉLECTION --------- */
::selection,
::-moz-selection {
    background-color: #dedfe4;
    color: rgba(0, 0, 0, 0.63);
}


/* --------- LOGO --------- */
.md-header__button.md-logo img {
    height: 3rem;
}

.md-header__button, .md-header__button.md-logo {
    padding: 0.2rem;
}