/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Carlito:wght@400;700&display=swap');
a {
  color: #1772d0;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #f09228;
  text-decoration: none;   /* keep no underline on hover */
}
html, body { margin: 0; padding: 0; }

body, td, th, tr, p{
  font-family: Carlito, Calibri, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
}

/* optional: tighten table padding */
td { padding: 12px !important; }

strong {
  font-family: Carlito, Calibri, Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

heading {
  font-family: Carlito, Calibri, Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

papertitle {
  font-family: Carlito, Calibri, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

a papertitle {
  color: inherit;
  text-decoration: none;
}

a:hover papertitle {
  color: inherit;
  text-decoration: underline;
}

name {
  font-family: Carlito, Calibri, Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.one {
  width: 160px;
  height: 160px;
  position: relative;
}

.two {
  width: 160px;
  height: 160px;
  position: absolute;
  transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

.fade {
  transition: opacity .2s ease-in-out;
  -moz-transition: opacity .2s ease-in-out;
  -webkit-transition: opacity .2s ease-in-out;
}

span.highlight {
  background-color: #ffffd0;
}

/* --- Language switch (EN | FR) --- */
.lang-switch{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;

  font-size: 14px;
  background: rgba(255,255,255,0.9);
  padding: 6px 10px;
  border-radius: 8px;
}

.lang-switch a { text-decoration: none; }
.lang-switch a:hover { text-decoration: underline; }
.lang-switch .active { font-weight: 700; }

