/* ════════════════════════════════════════════════════════════
   Laurent Oudre — site.css
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Open+Sans:wght@400;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --blue:     rgb(68, 78, 155);
  --teal:     rgb(0, 121, 141);
  --red:      rgb(231, 80, 58);
  --pale:     rgb(220, 240, 243);
  --bg:       #f7fafb;
  --white:    #ffffff;
  --text:     #1a1a2e;
  --muted:    #5a6070;
  --border:   #dde4ea;
  --gradient: linear-gradient(90deg, var(--blue), var(--red));
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 3px 14px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,121,141,0.13);
  --radius: 10px;

  /* ── ICON SIZE — single source of truth ── */
  --icon-size: 30px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; line-height: 1.6; }
img { max-width: 100%; }
/* Content images block; icons stay inline */
.research-img img, .profile-card-photo { display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--blue); }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid transparent;
  border-image: var(--gradient) 1;
  padding: 20px 48px 16px;
  display: flex; align-items: center; gap: 18px;
}
.site-header img { height: 54px; width: auto; }
.header-text h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.85rem; font-weight: 700;
  color: var(--teal); line-height: 1.1; letter-spacing: -0.01em;
}
.header-text p { font-size: 0.83rem; color: var(--muted); font-weight: 300; margin-top: 3px; }

/* ── NAV ── */
nav { background: var(--gradient); padding: 0 48px; display: flex; overflow-x: auto; scrollbar-width: none; }
nav::-webkit-scrollbar { display: none; }
nav a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.87rem; font-weight: 400;
  padding: 13px 18px; border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.09); }
nav a.active { color: #fff; font-weight: 600; border-bottom-color: rgba(255,255,255,0.85); }

/* ── MAIN ── */
main { max-width: 1100px; margin: 40px auto; padding: 0 32px 72px; }

/* ── TYPOGRAPHY ── */
.page-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.7rem; font-weight: 700; color: var(--teal);
  margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.page-title .subtitle { font-size: 1rem; font-weight: 400; color: var(--muted); }

/* ── SECTION LABEL (majuscules vertes avec ligne) ── */
/* Used on home, research, teaching, people, demos, links pages */
.section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;          /* bigger than before (was 0.72rem) */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 36px 0 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-label.muted { color: var(--muted); }

.intro { font-size: 0.93rem; line-height: 1.78; margin-bottom: 36px; color: var(--text); max-width: 820px; }

/* ── FOOTER ── */
footer { text-align: center; font-size: 0.77rem; color: #aab0bc; padding: 28px 0 12px; border-top: 1px solid var(--border); margin-top: 48px; }

/* ══════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════ */

/* ── CITE BOX ── */
.cite-box {
  background: linear-gradient(135deg, rgba(0,121,141,0.045), rgba(68,78,155,0.045));
  border-left: 4px solid var(--teal); border-radius: 0 8px 8px 0;
  padding: 14px 18px; margin-top: 10px;
}
.cite-box p { font-size: 0.82rem; line-height: 1.65; color: var(--text); margin-bottom: 0; }
.cite-box p + p { margin-top: 8px; }
.cite-box a { color: var(--teal); }
.cite-box a:hover { color: var(--blue); }
.cite-box i { color: var(--muted); }

/* ── ICON BUTTON — circular button, used everywhere ── */
a.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  margin: 0 2px;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
}
a.icon-btn:hover {
  background: var(--pale);
  border-color: var(--teal);
  transform: scale(1.08);
}
a.icon-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════ */

/* Profile card (sidebar) */
.profile-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-md); text-align: center;
}
.profile-card-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.profile-card-body { padding: 16px 14px 18px; }
.profile-card-name { font-family: 'Open Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.profile-card-title { font-size: 0.75rem; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.profile-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 14px; }
/* profile-social uses same circle style as icon-btn */
.profile-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; overflow: hidden;
  background: var(--bg); border: 1px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
}
.profile-social a:hover { background: var(--pale); border-color: var(--teal); }
.profile-social img { width: 18px; height: 18px; object-fit: contain; }
.profile-contact { font-size: 0.76rem; color: var(--muted); line-height: 1.85; text-align: left; padding: 10px 12px; background: var(--bg); border-radius: 7px; }
.profile-contact strong { display: block; color: var(--text); font-size: 0.8rem; margin-bottom: 2px; }

/* Home grid */
.home-grid { display: grid; grid-template-columns: 1fr 220px; gap: 36px; margin-bottom: 40px; align-items: start; }
@media(max-width:750px){ .home-grid { grid-template-columns: 1fr; } }

.home-intro { font-size: 0.95rem; line-height: 1.8; color: var(--text); margin-bottom: 18px; }

.home-notice {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #fffbeb, #fef9e7);
  border: 1px solid #fcd34d; border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0; padding: 10px 16px;
  font-size: 0.84rem; color: #78350f; margin-bottom: 14px;
}
.home-notice::before { content: '✉'; font-size: 1rem; flex-shrink: 0; }

.cv-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--teal);
  border: 1px solid var(--teal); border-radius: 20px;
  padding: 3px 12px; margin-bottom: 20px;
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.cv-pill:hover { background: var(--teal); color: white; }

.bio-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  font-size: 0.86rem; line-height: 1.78; color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* Program tiles */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media(max-width:600px){ .programs-grid { grid-template-columns: 1fr; } }
.program-tile {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.17s, transform 0.17s;
}
.program-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); color: var(--text); }
.program-tile-logo { height: 40px; width: auto; flex-shrink: 0; }
.program-tile-text strong { display: block; font-size: 0.88rem; color: var(--teal); margin-bottom: 2px; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.program-tile-text span { font-size: 0.78rem; color: var(--muted); }

/* Project tiles */
.projects-stack { display: flex; flex-direction: column; gap: 10px; }
.project-tile {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.17s;
}
.project-tile:hover { box-shadow: var(--shadow-hover); }
.project-tile-logo { height: 44px; width: auto; flex-shrink: 0; margin-top: 2px; }
.project-tile-body { font-size: 0.84rem; line-height: 1.68; }
.project-tile-body strong { color: var(--text); }
.project-tile-body a { color: var(--teal); }
.project-tile-body a:hover { color: var(--blue); }

/* Papers stack */
.papers-stack { display: flex; flex-direction: column; }
.paper-item { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; line-height: 1.6; }
.paper-item:last-child { border-bottom: none; }
.paper-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.paper-item a { color: var(--text); }
.paper-item a:hover { color: var(--teal); }
.paper-item i { color: var(--muted); }
.paper-venue {
  display: inline-block; font-size: 0.73rem; font-weight: 600;
  color: var(--teal); background: var(--pale);
  padding: 1px 7px; border-radius: 4px; margin-left: 5px;
  vertical-align: middle; white-space: nowrap;
}

/* ══════════════════════════════════════════════════════
   RESEARCH PAGE
   ══════════════════════════════════════════════════════ */
.research-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s;
}
.research-block:hover { box-shadow: var(--shadow-hover); }
.research-block-header {
  background: var(--gradient); color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; padding: 14px 24px;
}
/* Figures large — 50/50 split so images are prominent */
.research-block-body { display: grid; grid-template-columns: 1fr 1fr; }
.research-block-body.reverse { grid-template-columns: 1fr 1fr; }
@media(max-width:700px){
  .research-block-body, .research-block-body.reverse { grid-template-columns: 1fr; }
  .research-block-body.reverse .research-img { order: -1; }
}
.research-text { padding: 22px 26px; font-size: 0.86rem; line-height: 1.75; }
.research-text ul { list-style: none; padding: 0; }
.research-text ul li { padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid var(--pale); }
.research-text ul li:last-child { border-bottom: none; }
.research-text ul li::before { content: '★'; position: absolute; left: 0; color: var(--teal); font-size: 0.6rem; top: 8px; }
.research-text strong { color: var(--blue); }
.research-text p { font-size: 0.83rem; margin-top: 14px; }
.research-img { min-height: 280px; overflow: hidden; }
.research-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════════════════════
   TEACHING PAGE
   ══════════════════════════════════════════════════════ */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 11px; }

.course-tile {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 15px 18px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.17s, transform 0.17s;
  display: flex; flex-direction: column; gap: 6px;
}
.course-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.course-tile a { font-weight: 600; font-size: 0.88rem; color: var(--teal); line-height: 1.4; }
.course-tile a:hover { color: var(--blue); }
.course-tile .no-link { font-weight: 500; font-size: 0.87rem; color: var(--muted); line-height: 1.4; }
.course-tile .level { font-size: 0.74rem; color: var(--muted); background: var(--bg); border-radius: 4px; padding: 2px 8px; display: inline-block; width: fit-content; border: 1px solid var(--border); }
.course-tile.inactive { opacity: 0.7; }
.course-tile.inactive:hover { box-shadow: var(--shadow-sm); transform: none; }

/* ══════════════════════════════════════════════════════
   PEOPLE PAGE
   ══════════════════════════════════════════════════════ */
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 10px; }

.member-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.17s;
  display: flex; flex-direction: column; gap: 5px;
}
.member-card:hover { box-shadow: var(--shadow-hover); }
.member-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.member-name a { color: var(--teal); }
.member-name a:hover { color: var(--blue); }
.member-badges { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.badge-role { font-size: 0.72rem; font-weight: 700; color: var(--white); background: var(--teal); padding: 2px 9px; border-radius: 20px; }
.badge-role.phd { background: var(--blue); }
.badge-role.msc { background: var(--muted); }
.badge-cifre { font-size: 0.68rem; font-weight: 700; color: #92400e; background: #fef3c7; padding: 2px 7px; border-radius: 4px; }
.member-detail { font-size: 0.79rem; color: var(--muted); line-height: 1.55; }
.member-detail a { color: var(--teal); }
.member-detail a:hover { color: var(--blue); }

.alumni-list { list-style: none; padding: 0; }
.alumni-list li { padding: 8px 0 8px 16px; border-bottom: 1px solid var(--border); font-size: 0.84rem; line-height: 1.6; position: relative; }
.alumni-list li:last-child { border-bottom: none; }
.alumni-list li::before { content: ''; position: absolute; left: 2px; top: 17px; width: 5px; height: 5px; border-radius: 50%; background: var(--border); }
.alumni-list a { color: var(--teal); }
.alumni-list a:hover { color: var(--blue); }
.alumni-now { font-size: 0.77rem; color: var(--teal); font-style: italic; margin-top: 1px; display: block; }
.alumni-now::before { content: '→ '; }
.subsection { font-family: 'Open Sans', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; margin: 20px 0 10px; }

/* ══════════════════════════════════════════════════════
   SOFTWARE PAGE
   ══════════════════════════════════════════════════════ */
.sw-block {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  margin-bottom: 26px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s;
}
.sw-block:hover { box-shadow: var(--shadow-hover); }
.sw-body { padding: 20px 24px; }
.sw-body p { font-size: 0.87rem; line-height: 1.75; margin-bottom: 14px; }
.sw-body a { color: var(--teal); }
.sw-links { display: flex; gap: 14px; align-items: center; margin: 12px 0 14px; flex-wrap: wrap; }
.sw-link-item { display: flex; align-items: center; transition: opacity 0.15s, transform 0.15s; }
.sw-link-item:hover { opacity: 0.72; transform: scale(1.06); }
.badges-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }

.dl-table { border-collapse: collapse; margin: 12px 0; }
.dl-table td { padding: 7px 12px 7px 0; font-size: 0.84rem; vertical-align: middle; }
.dl-table td:first-child { font-weight: 500; color: var(--muted); min-width: 110px; }

/* ══════════════════════════════════════════════════════
   TALKS PAGE
   ══════════════════════════════════════════════════════ */
.talk-item {
  display: flex; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 18px;
  margin-bottom: 9px; box-shadow: var(--shadow-sm); transition: box-shadow 0.17s;
}
.talk-item:hover { box-shadow: var(--shadow-hover); }
.talk-text { flex: 1; font-size: 0.86rem; line-height: 1.6; color: var(--text); margin-right: 14px; }
.talk-text .venue { font-size: 0.77rem; color: var(--muted); margin-top: 2px; }
.talk-icons { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   PUBLICATIONS PAGE
   ══════════════════════════════════════════════════════ */
.filter-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 34px; box-shadow: var(--shadow-sm); }
.filter-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 11px; }
.filter-row:last-child { margin-bottom: 0; }
.filter-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; white-space: nowrap; min-width: 106px; text-align: center; margin-top: 3px; flex-shrink: 0; }
.label-all { background: #e5e7eb; color: #374151; }
.label-methods { background: #dbeafe; color: var(--blue); }
.label-applications { background: #fee2e2; color: #b91c1c; }
.label-data { background: #d1fae5; color: #065f46; }
.label-repro { background: #fef3c7; color: #92400e; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 6px; }

.btn-show-all { border: 2px solid var(--teal); background: var(--white); color: var(--teal); font-family: 'DM Sans', sans-serif; font-size: 0.81rem; font-weight: 600; padding: 4px 15px; border-radius: 20px; cursor: pointer; transition: all 0.17s; }
.btn-show-all:hover, .btn-show-all.active { background: var(--teal); color: var(--white); }
.btn { border: 1.5px solid #d1d5db; background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.77rem; font-weight: 400; padding: 3px 11px; border-radius: 20px; cursor: pointer; transition: all 0.17s; color: var(--text); }
.btn2 { border-color: #93c5fd; color: var(--blue); }
.btn2:hover, .btn2.active { background: var(--blue); color: white; border-color: var(--blue); }
.btn3 { border-color: #fca5a5; color: #b91c1c; }
.btn3:hover, .btn3.active { background: #dc2626; color: white; border-color: #dc2626; }
.btn4 { border-color: #6ee7b7; color: #065f46; }
.btn4:hover, .btn4.active { background: #059669; color: white; border-color: #059669; }
.btn5 { border-color: #fcd34d; color: #92400e; }
.btn5:hover, .btn5.active { background: #d97706; color: white; border-color: #d97706; }

.section-heading { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; background: var(--gradient); padding: 5px 14px; border-radius: 4px; margin: 30px 0 0; display: inline-block; }
.section-heading-wrapper { margin-bottom: 0; }

.pub-table { width: 100%; border-collapse: collapse; counter-reset: pubcounter; }
.pub-row { border-bottom: 1px solid var(--border); transition: background 0.13s; }
.pub-row:hover { background: #f0f8fa; }
.pub-row:first-child { border-top: 1px solid var(--border); }
.pub-num { font-size: 0.77rem; font-weight: 700; color: var(--teal); padding: 12px 12px 12px 0; width: 32px; vertical-align: top; padding-top: 14px; white-space: nowrap; }
.pub-row td.pub-num::before { counter-increment: pubcounter; content: "[" counter(pubcounter) "]"; }
.pub-text { font-size: 0.84rem; line-height: 1.62; color: var(--text); padding: 12px 12px 12px 0; vertical-align: top; text-align: justify; }
.pub-text i { color: var(--muted); }
.pub-links { padding: 12px 0 12px 8px; vertical-align: middle; text-align: center; white-space: nowrap; width: 90px; }
.filterDiv { display: none; }
.filterDiv.show { display: table-row; }
.section-wrapper { display: none; }
.section-wrapper.show { display: block; }

/* ══════════════════════════════════════════════════════
   TEACHING DETAIL PAGES
   ══════════════════════════════════════════════════════ */
.teaching-intro {
  font-size: 0.9rem; line-height: 1.78; margin-bottom: 26px; color: var(--muted);
  padding: 14px 18px; background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.info-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 14px; font-size: 0.87rem; line-height: 1.72; box-shadow: var(--shadow-sm); }
.info-box > p { margin-bottom: 10px; }
.info-box > p:last-child { margin-bottom: 0; }
.info-box ul, .info-box ol { padding-left: 20px; margin-top: 8px; }
.info-box li { margin-bottom: 5px; }
.info-box li ul, .info-box li ol { margin-top: 5px; }
.info-box strong { color: var(--blue); }

.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table td { padding: 12px 14px; vertical-align: top; border-bottom: 1px solid var(--border); font-size: 0.84rem; line-height: 1.62; background: var(--white); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #f4fafc; }
.date-cell { white-space: nowrap; color: var(--blue); font-weight: 600; font-size: 0.8rem; line-height: 1.7; border-right: 2px solid var(--pale); min-width: 140px; width: 18%; background: rgba(68,78,155,0.03) !important; }
.title-cell { font-weight: 500; color: var(--text); }
.title-cell strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 4px; }
.title-cell ol, .title-cell ul { font-size: 0.81rem; color: var(--muted); padding-left: 18px; margin-top: 5px; }
.title-cell li { margin-bottom: 2px; }
.icon-cell { text-align: center; white-space: nowrap; width: 60px; padding: 12px 8px; }
.row-tutorial td { background: rgba(0,121,141,0.04) !important; }
.row-tutorial .title-cell { color: var(--teal); font-style: italic; }
.row-exam td { background: rgba(231,80,58,0.04) !important; }

.schedule-wrapper, .doc-wrapper { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.schedule-wrapper .schedule-table tr:last-child td { border-bottom: none; }

.doc-table { width: 100%; border-collapse: collapse; }
.doc-table td { padding: 10px 12px; vertical-align: middle; border-bottom: 1px solid var(--border); font-size: 0.85rem; background: var(--white); }
.doc-table tr:last-child td { border-bottom: none; }
.doc-table tr:hover td { background: #f4fafc; }
.doc-table td:last-child { text-align: right; white-space: nowrap; padding-left: 16px; }
