* { box-sizing: border-box; }

html { min-width: 320px; background: var(--color-canvas); }

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-canvas);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.has-open-nav { overflow: hidden; }

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: .65rem; font-size: clamp(1.8rem, 4vw, 2.55rem); line-height: 1.08; letter-spacing: -.035em; }
h2 { margin-bottom: .45rem; font-size: 1.15rem; line-height: 1.25; }

:focus-visible { outline: 3px solid rgb(243 154 56 / 65%); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: var(--color-text);
  text-decoration: none;
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { color: var(--color-primary-dark); font-size: 1.03rem; }
.brand small { margin-top: .22rem; color: var(--color-muted); font-size: .66rem; }
.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent));
  border-radius: 11px;
  box-shadow: 0 7px 16px rgb(8 125 193 / 20%);
  font-weight: 800;
}
.brand--light strong, .brand--light small { color: #fff; }
.brand__mark--light { color: var(--color-primary-dark); background: #fff; box-shadow: none; }

.eyebrow {
  margin-bottom: .38rem;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow--light { color: #d8f5ff; }

.app-frame { min-height: 100vh; }
.sidebar {
  position: fixed;
  z-index: 30;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--sidebar-width);
  padding: 1.25rem 1rem;
  flex-direction: column;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  transition: transform .22s ease;
}
.sidebar > .brand { margin: .1rem .65rem 1.3rem; }
.sidebar__nav { display: flex; min-height: 0; padding-right: .15rem; flex: 1; flex-direction: column; gap: .2rem; overflow-y: auto; }
.nav-item {
  display: flex;
  min-height: 43px;
  padding: .58rem .72rem;
  align-items: center;
  gap: .7rem;
  color: #526473;
  border-radius: 11px;
  font-size: .91rem;
  font-weight: 650;
  text-decoration: none;
}
.nav-item:hover { color: var(--color-primary-dark); background: #f3f8fb; }
.nav-item.is-active { color: var(--color-primary-dark); background: var(--color-primary-soft); }
.nav-item__icon { display: grid; width: 25px; height: 25px; place-items: center; color: var(--color-primary); font-size: 1rem; font-weight: 800; }
.sidebar__footer { display: flex; padding: 1rem .65rem .2rem; flex-direction: column; align-items: flex-start; gap: .45rem; border-top: 1px solid var(--color-border); }
.sidebar__footer small { color: var(--color-muted); }

.page-shell { min-height: 100vh; margin-left: var(--sidebar-width); }
.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  height: 74px;
  padding: 0 2rem;
  align-items: center;
  gap: 1rem;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}
.topbar .topbar__menu, .topbar__brand { display: none; }
.topbar__context { display: flex; flex: 1; flex-direction: column; line-height: 1.25; }
.topbar__context .eyebrow { margin-bottom: .15rem; font-size: .63rem; }
.user-menu { display: flex; align-items: center; gap: .65rem; }
.user-menu__avatar { display: grid; width: 36px; height: 36px; place-items: center; color: var(--color-primary-dark); background: var(--color-primary-soft); border-radius: 50%; font-weight: 800; }
.user-menu__identity { display: flex; max-width: 180px; flex-direction: column; line-height: 1.2; }
.user-menu__identity strong, .user-menu__identity small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-menu__identity small { margin-top: .18rem; color: var(--color-muted); font-size: .72rem; text-transform: capitalize; }

.content { width: min(100%, var(--content-max)); min-height: calc(100vh - 74px); margin: 0 auto; padding: 2rem; }
.page-header { display: flex; margin-bottom: 1.65rem; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.page-header__description { max-width: 760px; margin: 0; color: var(--color-muted); font-size: 1rem; }
.page-header__actions { display: flex; flex-wrap: wrap; gap: .65rem; }

.button {
  display: inline-flex;
  min-height: 42px;
  padding: .65rem 1rem;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
}
.button:hover { border-color: #b8ccd8; }
.button--primary { color: #fff; background: var(--color-primary); border-color: var(--color-primary); }
.button--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.button--quiet { min-height: 36px; color: var(--color-muted); background: transparent; border-color: transparent; }
.button--small { min-height: 34px; padding: .45rem .7rem; font-size: .8rem; }
.button--large { min-height: 48px; }
.icon-button { display: grid; width: 40px; height: 40px; padding: 0; place-items: center; background: #fff; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }

.metric-grid { display: grid; margin-bottom: 1.1rem; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.metric-card, .panel, .feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.metric-card { min-width: 0; padding: 1.15rem; }
.metric-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; color: var(--color-muted); font-size: .82rem; font-weight: 700; }
.metric-card__value { display: block; margin: .8rem 0 .35rem; color: var(--color-primary-dark); font-size: 2rem; line-height: 1; }
.metric-card p { margin: 0; color: var(--color-muted); font-size: .82rem; }
.metric-detail { margin-top: .8rem; font-size: .82rem; }
.metric-detail .record-list { margin-top: .6rem; }
.metric-detail .record-list article { flex-wrap: wrap; align-items: flex-start; }
.metric-detail .record-list article > div { flex: 1 1 110px; overflow-wrap: anywhere; }
.metric-detail .record-list article > strong { white-space: nowrap; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr); gap: 1rem; }
.panel { min-width: 0; padding: 1.25rem; }
.panel__header { display: flex; margin-bottom: 1rem; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.panel__header .eyebrow { margin-bottom: .2rem; }
.panel__header h2 { margin: 0; }
.panel--table { margin-top: 1rem; }

.status-badge { display: inline-flex; min-height: 25px; padding: .22rem .55rem; align-items: center; color: #586976; background: #eef2f4; border-radius: 999px; font-size: .7rem; font-weight: 800; white-space: nowrap; }
.status-badge--info { color: var(--color-primary-dark); background: var(--color-primary-soft); }
.status-badge--success { color: var(--color-success); background: var(--color-accent-soft); }
.status-badge--warning { color: #8a4b08; background: #fff3e3; }
.status-badge--danger { color: var(--color-danger); background: var(--color-danger-soft); }

.empty-state { display: flex; min-height: 180px; padding: 1.5rem; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--color-muted); }
.empty-state__icon { display: grid; width: 48px; height: 48px; margin-bottom: .8rem; place-items: center; color: var(--color-primary); background: var(--color-primary-soft); border-radius: 50%; font-size: 1.4rem; }
.empty-state strong { color: var(--color-text); }
.empty-state p { max-width: 460px; margin: .25rem 0 0; font-size: .88rem; }

.check-list { display: flex; margin: 0; padding: 0; flex-direction: column; gap: .3rem; list-style: none; }
.check-list li { display: flex; padding: .75rem 0; align-items: center; gap: .75rem; border-bottom: 1px solid #edf1f3; }
.check-list li:last-child { border-bottom: 0; }
.check-list__dot { width: 10px; height: 10px; flex: 0 0 auto; background: var(--color-warm); border-radius: 50%; }
.check-list__dot--ok { background: var(--color-success); }
.check-list div { display: flex; min-width: 0; flex-direction: column; }
.check-list small { color: var(--color-muted); }

.module-banner { display: flex; margin-bottom: 1rem; padding: 1rem 1.1rem; align-items: center; justify-content: space-between; gap: 1rem; background: linear-gradient(120deg, var(--color-primary-soft), var(--color-accent-soft)); border: 1px solid #cae5ee; border-radius: var(--radius-md); }
.module-banner p { margin: .15rem 0 0; color: var(--color-muted); }
.card-grid { display: grid; gap: 1rem; }
.card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { position: relative; min-height: 190px; padding: 1.25rem; overflow: hidden; }
.feature-card__index { display: inline-flex; margin-bottom: 1.3rem; color: var(--color-primary); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.feature-card h2 { font-size: 1.08rem; }
.feature-card p { color: var(--color-muted); font-size: .88rem; }
.feature-card--link { display: block; color: inherit; text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.feature-card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.activity-dot { display: block; width: 34px; height: 6px; margin-bottom: 1.3rem; background: var(--activity-color); border-radius: 999px; }
.catalog-grid { margin-top: 1rem; }
.card-grid__full { grid-column: 1 / -1; }
.text-link { color: var(--color-primary); font-size: .8rem; font-weight: 750; }
.text-link--disabled { color: #84919b; }

.table-scroll { width: 100%; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .8rem .75rem; text-align: left; border-bottom: 1px solid var(--color-border); }
th { color: var(--color-muted); background: #f8fafb; font-size: .75rem; letter-spacing: .03em; text-transform: uppercase; }
td { min-width: 130px; }
td .empty-state { min-height: 150px; }

.field { display: flex; flex-direction: column; gap: .38rem; }
.field > span { color: var(--color-text); font-size: .84rem; font-weight: 750; }
input, select, textarea { width: 100%; min-height: 46px; padding: .68rem .8rem; color: var(--color-text); background: #fff; border: 1px solid #cbd7de; border-radius: 10px; }
input:focus, select:focus, textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgb(8 125 193 / 12%); outline: 0; }
.form-stack { display: flex; flex-direction: column; gap: 1rem; }
.alert { padding: .8rem .9rem; border-radius: 10px; font-size: .87rem; }
.alert--danger { color: var(--color-danger); background: var(--color-danger-soft); border: 1px solid #fecdca; }
.alert--warning { margin-bottom: 1rem; color: #744006; background: #fff7e8; border: 1px solid #f8d49a; }
.alert p { margin: .25rem 0; }
.alert ul { margin-bottom: 0; }
.form-stack--wide { gap: 1.5rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: 1rem; }
.field--wide { grid-column: 1 / -1; }
.form-actions { display: flex; justify-content: flex-end; gap: .65rem; }
.check-field { display: flex; align-items: flex-start; gap: .65rem; }
.check-field input { width: 19px; min-height: 19px; margin-top: .12rem; }
.detail-grid { display: grid; margin-bottom: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.record-list { display: flex; flex-direction: column; }
.record-list article { display: flex; padding: .8rem 0; align-items: center; justify-content: space-between; gap: .75rem; border-bottom: 1px solid var(--color-border); }
.record-list article:first-child { padding-top: 0; }
.record-list article:last-child { border-bottom: 0; }
.record-list article > div { display: flex; min-width: 0; flex-direction: column; }
.record-list small { color: var(--color-muted); }
.record-list td small, td small { display: block; color: var(--color-muted); }
.chart-list { display: flex; flex-direction: column; gap: .85rem; }
.chart-row { display: grid; grid-template-columns: minmax(110px, .8fr) minmax(120px, 2fr) auto; align-items: center; gap: .75rem; font-size: .85rem; }
.chart-track { height: 12px; overflow: hidden; background: #e8f0f4; border-radius: 999px; }
.chart-track i { display: block; min-width: 2px; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: inherit; }
.invoice__head { display: flex; margin-bottom: 1.5rem; justify-content: space-between; gap: 1rem; }
.remuneration-actions { margin-bottom: 1rem; }
.remuneration-actions .export-actions { display: flex; margin-top: 11px; gap: 11px; }
.inline-form { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--color-border); }
.inline-form summary { color: var(--color-primary); cursor: pointer; font-weight: 750; }
.inline-form form { margin-top: 1rem; }
.family-summary { margin-top: 1rem; }
.filter-bar { display: grid; margin-bottom: 1rem; padding: .9rem; grid-template-columns: repeat(3, minmax(150px, 1fr)) auto; align-items: end; gap: .75rem; }
.week-toolbar { display: flex; margin-bottom: .75rem; align-items: center; justify-content: space-between; gap: .5rem; }
.week-grid { display: grid; grid-template-columns: repeat(7, minmax(145px, 1fr)); gap: .65rem; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: .4rem; }
.day-column { min-height: 330px; background: #eef3f6; border: 1px solid var(--color-border); border-radius: var(--radius-md); scroll-snap-align: start; }
.day-column > header { display: flex; padding: .75rem; align-items: center; justify-content: space-between; color: var(--color-muted); border-bottom: 1px solid var(--color-border); }
.day-column > header strong { display: grid; width: 30px; height: 30px; place-items: center; color: var(--color-text); background: #fff; border-radius: 50%; }
.day-column.is-today > header strong { color: #fff; background: var(--color-primary); }
.day-column__sessions { display: flex; padding: .55rem; flex-direction: column; gap: .5rem; }
.day-column__empty { padding: .8rem; color: #97a4ad; text-align: center; font-size: .75rem; }
.session-card { padding: .65rem; background: #fff; border-left: 4px solid var(--activity-color); border-radius: 9px; box-shadow: var(--shadow-sm); }
.session-card__time { margin-bottom: .2rem; color: var(--color-primary-dark); font-size: .74rem; font-weight: 800; }
.session-card > strong, .session-card > small { display: block; }
.session-card > strong { font-size: .83rem; }
.session-card > small { margin-top: .18rem; color: var(--color-muted); font-size: .7rem; }
.session-card__actions { display: flex; margin-top: .55rem; align-items: center; gap: .55rem; font-size: .68rem; }
.session-card__actions a, .session-card__actions button { padding: 0; color: var(--color-primary); background: none; border: 0; cursor: pointer; font-weight: 750; text-decoration: none; }
.planning-actions { margin: 1rem 0; }
.action-card { display: flex; padding: 1rem 1.1rem; align-items: center; justify-content: space-between; gap: 1rem; }
.action-card p { margin: .15rem 0 0; color: var(--color-muted); }
.slot-fields { padding: 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.slot-fields legend { padding: 0 .4rem; font-weight: 750; }

.login-body { min-height: 100vh; background: #fff; }
.login-shell { display: grid; min-height: 100vh; grid-template-columns: minmax(360px, .95fr) minmax(440px, 1.05fr); }
.login-intro { display: flex; min-height: 100%; padding: clamp(2rem, 7vw, 6rem); flex-direction: column; justify-content: space-between; color: #fff; background: linear-gradient(145deg, #075b91 0%, #087dc1 50%, #119d9c 100%); }
.login-intro h1 { max-width: 620px; margin-bottom: 1rem; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.login-intro p:not(.eyebrow) { max-width: 540px; color: #d9f3ff; font-size: 1.1rem; }
.login-intro > small { color: #d9f3ff; }
.login-card { display: flex; width: min(100% - 3rem, 470px); margin: auto; padding: 2rem; flex-direction: column; gap: 1.4rem; background: #fff; }
.login-card h2 { margin-bottom: .6rem; font-size: 2rem; }
.login-card p:not(.eyebrow) { color: var(--color-muted); }

.error-body { min-height: 100vh; }
.error-shell { width: min(100% - 2rem, 620px); margin: 0 auto; padding: 4rem 0; }
.error-card { margin-top: 2rem; text-align: center; }
.error-code { color: var(--color-primary); font-size: 3rem; font-weight: 850; }

.dialog { max-width: min(560px, calc(100% - 2rem)); padding: 0; border: 0; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.dialog::backdrop { background: rgb(18 36 48 / 55%); }
.dialog__panel { margin: 0; }
.dialog__panel > header { display: flex; padding: 1rem 1.2rem; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--color-border); }
.dialog__panel h2 { margin: 0; }
.dialog__content { padding: 1.2rem; }

.mobile-nav, .nav-backdrop { display: none; }

@media (max-width: 1180px) {
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .sidebar { transform: translateX(-105%); box-shadow: var(--shadow-md); }
  [data-nav-open="true"] .sidebar { transform: translateX(0); }
  .nav-backdrop { position: fixed; z-index: 25; inset: 0; display: block; background: rgb(18 36 48 / 48%); }
  .nav-backdrop[hidden] { display: none; }
  .page-shell { margin-left: 0; }
  .topbar { height: 66px; padding: 0 1.1rem; }
  .topbar .topbar__menu { display: grid; }
  .topbar__brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
  .topbar__brand .brand__mark { width: 32px; height: 32px; flex-basis: 32px; border-radius: 9px; }
  .topbar__context { display: none; }
  .user-menu { margin-left: auto; }
  .content { min-height: calc(100vh - 66px); padding: 1.5rem; padding-bottom: 6.5rem; }
  .mobile-nav { position: fixed; z-index: 20; right: .75rem; bottom: .65rem; left: .75rem; display: flex; min-height: 68px; padding: .4rem; align-items: stretch; justify-content: space-around; background: rgb(255 255 255 / 96%); border: 1px solid var(--color-border); border-radius: 18px; box-shadow: 0 14px 38px rgb(27 52 70 / 22%); backdrop-filter: blur(12px); }
  .mobile-nav__item { display: flex; min-width: 64px; padding: .35rem .45rem; flex: 1; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; color: var(--color-muted); background: none; border: 0; border-radius: 12px; text-decoration: none; cursor: pointer; }
  .mobile-nav__item > span { font-size: 1.05rem; font-weight: 800; }
  .mobile-nav__item small { font-size: .65rem; font-weight: 750; }
  .mobile-nav__item.is-active { color: var(--color-primary-dark); background: var(--color-primary-soft); }
}

@media (max-width: 820px) {
  .dashboard-grid, .card-grid--three, .detail-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .login-shell { grid-template-columns: 1fr; }
  .login-intro { min-height: 330px; padding: 2rem; }
  .login-intro h1 { font-size: clamp(2.25rem, 8vw, 3.3rem); }
  .login-card { padding: 3rem 0 4rem; }
}

@media (max-width: 620px) {
  .topbar { padding: 0 .75rem; }
  .topbar__brand strong { font-size: .85rem; }
  .topbar__brand strong { white-space: nowrap; }
  .topbar > a[aria-label="Rechercher dans l’application"] { width: 36px; min-height: 36px; padding: 0; font-size: 0; }
  .topbar > a[aria-label="Rechercher dans l’application"]::before { content: "⌕"; font-size: 1rem; }
  .user-menu__identity, .user-menu .button { display: none; }
  .content { padding: 1.15rem 1rem 6.5rem; }
  .page-header { margin-bottom: 1.2rem; align-items: flex-start; flex-direction: column; }
  .page-header h1 { margin-bottom: .5rem; }
  .metric-grid { grid-template-columns: 1fr; gap: .75rem; }
  .metric-card { padding: 1rem; }
  .module-banner { align-items: flex-start; }
  .panel, .feature-card { padding: 1rem; }
  .mobile-nav { right: .4rem; bottom: .4rem; left: .4rem; }
  .mobile-nav__item { min-width: 0; padding-inline: .2rem; }
  .mobile-nav__item small { max-width: 58px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .login-intro { min-height: 290px; }
  .login-intro h1 { font-size: 2.25rem; }
  .login-card { width: min(100% - 2rem, 470px); padding: 2.2rem 0 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .filter-bar { grid-template-columns: 1fr; }
  .week-toolbar { align-items: stretch; flex-direction: column; }
  .week-toolbar .button { width: 100%; }
  .week-grid { margin-right: -1rem; padding-right: 1rem; grid-template-columns: repeat(7, minmax(78vw, 1fr)); }
  .action-card { align-items: stretch; flex-direction: column; }
  .action-card .button { width: 100%; }
  .chart-row { grid-template-columns: 1fr auto; }
  .chart-track { grid-column: 1 / -1; grid-row: 2; }
  .invoice__head { flex-direction: column; }
  .remuneration-actions .export-actions { flex-direction: column; gap: 9px; }
  .remuneration-actions .export-actions .button { width: 100%; }
  .portal-record { align-items: stretch !important; flex-direction: column; }
  .portal-actions { width: 100%; flex-wrap: wrap; }
  .portal-actions form, .portal-actions .button, .portal-actions select { flex: 1 1 100%; width: 100%; }
}

.portal-actions { display: flex; align-items: center; justify-content: flex-end; gap: .5rem; }
.portal-actions form { margin: 0; }
.portal-report-text { white-space: pre-wrap; overflow-wrap: anywhere; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


@media print {
  body, .admin-body { background: #fff !important; }
  .sidebar, .topbar, .mobile-nav, .nav-backdrop, .page-header__actions, .form-actions, .button, form[action="/logout"] { display: none !important; }
  .page-shell { margin-left: 0 !important; }
  .content { width: 100% !important; min-height: auto; padding: 0 !important; }
  .panel, .metric-card, .feature-card { break-inside: avoid; box-shadow: none !important; }
  .table-scroll { overflow: visible !important; }
  table { font-size: 10pt; }
  a { text-decoration: none; }
}
