/* ===================================================================
   THÈME « MAISON DE RECEPTION » (2026-07-16) — bleu nuit + or + crème,
   titres Playfair Display, corps Karla. Choisi parmi 3 directions
   (voir design-backup-2026-07-15/ pour l'ancien design complet).

   Mécanique : les 4 variables héritées de Système → Paramètres restent
   la source des couleurs personnalisables (--nav-bg, --nav-bg-dark,
   --page-bg, --accent, injectées par _branding-css.ejs). Le thème
   ajoute ses propres jetons ci-dessous (or des actions, bordures
   chaudes, rayons, polices) — indépendants du réglage du bandeau.
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* Polices (repli élégant si hors ligne : Georgia / système). */
  --font-body: 'Karla', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  /* Action principale : OR de maison de réception. */
  --cta: #A16207;
  --cta-dark: #854D0E;
  /* Neutres chauds (bordures, fonds de tables, séparateurs). */
  --border: #E7DFD2;
  --border-soft: #EDE6DA;
  --border-input: #D6CDBD;
  --surface-warm: #F5F0E8;
  --hover-warm: #FAF7F2;
  --ink: #292524;
  --ink-2: #57534E;
  --ink-3: #78716C;
  --radius: 10px;
  --radius-sm: 6px;
  --card-shadow: 0 2px 6px rgba(41, 37, 36, 0.06);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--page-bg, #FAF7F2);
  min-height: 100vh;
  color: var(--ink);
}

/* Layout centré pour la page login */
body.auth-layout {
  background: linear-gradient(135deg, var(--nav-bg, #1E3A8A) 0%, var(--nav-bg-dark, #16295E) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
body.auth-layout main.card { max-width: 400px; }

main.card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}
.container .card {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 1.5rem;
}

/* Titres : serif de réception pour h1/h2 (identité), sans-serif pour h3. */
h1 { margin: 0 0 0.5rem; color: var(--accent, #1E3A8A); font-size: 1.6rem; font-family: var(--font-display); font-weight: 700; }
h2 { color: #37342F; font-size: 1.2rem; margin-top: 2rem; font-family: var(--font-display); font-weight: 600; }
h3 { color: var(--ink-2); font-size: 1rem; margin-top: 1.5rem; font-weight: 700; }
p { color: var(--ink-2); line-height: 1.55; }
.muted { color: #A8A29E; font-size: 0.9rem; }
.subtitle { color: var(--ink-3); margin: 0 0 1.5rem; }
code { background: var(--surface-warm); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.9em; }
a { color: var(--accent, #1E3A8A); }

/* Formulaires */
label {
  display: block;
  margin-bottom: 1rem;
  color: #37342F;
  font-size: 0.9rem;
  font-weight: 600;
}
.help { color: #A8A29E; font-size: 0.8rem; font-weight: 400; margin-top: 0.2rem; display: block; }
input, textarea, select {
  display: block;
  width: 100%;
  margin-top: 0.3rem;
  /* Champs de saisie plus compacts (hauteur réduite) — 2026-07-08. */
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--nav-bg, #1E3A8A);
  border-color: transparent;
}
input[type="checkbox"] {
  width: auto;
  display: inline-block;
  margin: 0 0.5rem 0 0;
  vertical-align: middle;
}
input[type="color"] {
  height: 2.5rem;
  padding: 0.2rem;
  cursor: pointer;
}
label.inline { display: inline-flex; align-items: center; gap: 0.5rem; }

button {
  /* Hauteur UNIQUE pour TOUS les boutons (2.2rem) — 2026-07-08.
     Action principale = OR du thème (plus la couleur du bandeau). */
  padding: 0.4rem 1.2rem;
  min-height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
button:hover { background: var(--cta-dark); }
body.auth-layout button { width: 100%; }
.btn-small {
  padding: 0.35rem 0.7rem;
  /* Hauteur STANDARDISÉE pour tous les boutons d'action — 2026-07-08. */
  min-height: 2.2rem;
  font-size: 0.85rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.btn-small:hover { background: var(--border-soft); }
.btn-primary { background: var(--cta); color: #fff; border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-dark); border-color: var(--cta-dark); }
.btn-danger {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fca5a5;
}
.btn-danger:hover { background: #fecaca; }
.btn-link {
  padding: 0.35rem 0.8rem;
  min-height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  text-decoration: none;
}
.form-actions { display: flex; gap: 0.5rem; align-items: center; margin-top: 1rem; }

/* Grille formulaire 2 colonnes (responsive) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; }
.form-grid label { margin-bottom: 0; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* Messages */
.error {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.error ul { margin: 0; padding-left: 1.2rem; }
.success {
  background: #F0FDF4;
  color: #166534;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.flash { padding: 0.7rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.92rem; border-left: 3px solid transparent; }
.flash-success { background: #F0FDF4; color: #166534; border-left-color: #16A34A; }
.flash-warning { background: #FEF3C7; color: #92400E; border-left-color: #D97706; }
.flash-info { background: #FEF9EE; color: #713F12; border-left-color: var(--cta); }

/* Nav */
/* La couleur du bandeau vient de Système → Paramètres via la variable CSS
   --nav-bg (injectée par _nav.ejs). --nav-bg-dark = teinte foncée dérivée
   (menu déroulant). Défauts = bleu nuit du thème. */
.topnav { background: var(--nav-bg, #1E3A8A); color: #fff; }
.topnav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  /* Écrans intermédiaires (~820-1550px) : replier plutôt que défiler. */
  flex-wrap: wrap;
  row-gap: 0.3rem;
}
.brand { font-weight: 700; font-size: 1.15rem; font-family: var(--font-display); letter-spacing: 0.01em; }
.topnav ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.3rem;
  flex: 1;
}
.topnav a {
  /* Blanc translucide : lisible sur n'importe quelle couleur foncée de bandeau */
  color: rgba(255, 255, 255, 0.86);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  text-decoration: none;
}
.topnav a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
/* Page active : touche d'or du thème (lisible sur bandeau foncé). */
.topnav a.active { background: rgba(161, 98, 7, 0.38); color: #FDE68A; }
.nav-user { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }

/* Dropdown menu (Système → Audit, Import…)
   IMPORTANT : préfixé .topnav pour battre la spécificité de `.topnav ul {display:flex}`. */
.nav-dropdown { position: relative; }
.topnav .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--nav-bg-dark, #16295E);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  min-width: 220px;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}
.topnav .nav-dropdown.open .nav-dropdown-menu { display: flex; }
.topnav .nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255, 255, 255, 0.15); }

/* Alertes (formulaires d'import, etc.) */
.alert {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  border-left: 4px solid;
}
.alert-error {
  background: #fef2f2;
  border-color: #dc2626;
  color: #7f1d1d;
}
.alert-success {
  background: #F0FDF4;
  border-color: #16a34a;
  color: #14532d;
}
.alert table th, .alert table td {
  padding: 0.4rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.alert table th {
  background: var(--surface-warm);
  font-weight: 600;
}

/* Sélecteur de langue */
.lang-switcher { font-size: 0.85rem; }
.lang-switcher a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
}
.lang-switcher a.active { color: #FDE68A; background: rgba(161, 98, 7, 0.38); font-weight: 700; }
.lang-switcher .sep { color: rgba(255, 255, 255, 0.5); margin: 0 0.2rem; }

.auth-lang { position: absolute; top: 1rem; right: 1rem; }
.auth-lang a { color: var(--ink-3); }
.auth-lang a.active { color: var(--accent, #1E3A8A); background: var(--surface-warm); }

/* Badges */
.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-admin   { background: #FEF3C7; color: #92400E; }
.badge-prestataire { background: #DBEAFE; color: #1E40AF; }
.badge-client  { background: #EDE9FE; color: #5B21B6; }
.badge-actif   { background: #F0FDF4; color: #166534; }
.badge-inactif { background: #FEE2E2; color: #991B1B; }
.badge-principal { background: #FEF3C7; color: #92400E; }

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.92rem;
}
.data-table th, .data-table td {
  text-align: left;
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.data-table th {
  color: var(--ink-2);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface-warm);
  border-bottom: 2px solid var(--border);
}
.data-table tr:hover td { background: var(--hover-warm); }
.data-table tr.row-inactive td { color: #A8A29E; background: var(--hover-warm); }
.data-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.data-table .center { text-align: center; }
.actions { white-space: nowrap; display: flex; gap: 0.3rem; }

/* Bandeau d'en-tête de section avec bouton à droite */
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 2rem; margin-bottom: 0.5rem;
}
.section-head h2 { margin: 0; }

/* Forme inline pour ajout/retrait dans une fiche */
.inline-form { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.inline-form select, .inline-form input { width: auto; flex: 1; min-width: 150px; margin-top: 0; }
.inline-form button { padding: 0.5rem 0.9rem; }

/* === Calendrier hebdomadaire === */
.cal-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
}
.cal-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.85rem;
  min-width: 900px;
}
.cal-table th, .cal-table td {
  border-bottom: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  padding: 0;
  vertical-align: top;
}
.cal-table th:last-child, .cal-table td:last-child { border-right: none; }
.cal-table tbody tr:last-child th, .cal-table tbody tr:last-child td { border-bottom: none; }

.cal-table thead th {
  background: var(--surface-warm);
  padding: 0.6rem 0.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cal-emp-col {
  background: var(--surface-warm);
  padding: 0.6rem 0.75rem !important;
  text-align: left !important;
  font-weight: 700;
  color: var(--ink);
  min-width: 160px;
  max-width: 200px;
  position: sticky;
  left: 0;
  z-index: 2;
}
.cal-emp-col .help { display: block; font-size: 0.7rem; color: #A8A29E; font-weight: 400; margin-top: 0.1rem; }
.cal-day-col {
  min-width: 130px;
}

.cal-cell {
  /* Hauteur ajustée au contenu — cases vides cliquables (bouton « + »). */
  min-height: 2.2rem;
  padding: 0.25rem !important;
  position: relative;
  background: #fff;
}
.cal-open-row .cal-cell, .cal-open-row th {
  background: #fef9c3;
}

.cal-bloc {
  display: block;
  position: relative;
  background: #3B82F6;
  color: #fff;
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.75rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
  overflow: hidden;
}
.cal-bloc:hover { filter: brightness(0.92); }
.cal-bloc:last-child { margin-bottom: 0; }
.cal-bloc-time { display: block; font-weight: 700; }
.cal-bloc-poste { display: block; font-size: 0.7rem; opacity: 0.95; }
.cal-bloc-lieu  { display: block; font-size: 0.65rem; opacity: 0.85; font-style: italic; }
.cal-bloc-cancelled {
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 4px,
    rgba(255,255,255,0.3) 4px, rgba(255,255,255,0.3) 8px
  );
}
.cal-bloc-open {
  background-image: repeating-linear-gradient(
    -45deg, rgba(255,255,255,0.15) 0 6px, transparent 6px 12px
  );
  border: 1px dashed rgba(255,255,255,0.8);
}
/* Indicateur « $ » (coin haut-droit) : réservation source créée il y a < 24 h. */
.cal-bloc-dollar {
  position: absolute;
  top: 0;
  right: 3px;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  color: #fde047;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ── Écran réservation condensé : entête (gauche) + quarts (droite) ── */
.resa-layout {
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.resa-layout-single { grid-template-columns: minmax(0, 720px); }
@media (max-width: 1080px) {
  .resa-layout, .resa-layout-single { grid-template-columns: 1fr; }
}
.resa-block { margin-bottom: 1.4rem; }
.resa-block:last-child { margin-bottom: 0; }
.resa-h {
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
  color: #37342F;
  font-family: var(--font-display);
  font-weight: 600;
}
.resa-kv { margin: 0 0 0.85rem; display: grid; gap: 0.3rem; }
.resa-kv > div { display: flex; gap: 0.5rem; font-size: 0.9rem; line-height: 1.35; }
.resa-kv dt { color: var(--ink-3); font-weight: 600; min-width: 3.5rem; }
.resa-kv dd { margin: 0; color: #1C1917; }
.data-table.compact th,
.data-table.compact td { padding: 0.32rem 0.5rem; font-size: 0.83rem; }
/* Tableau « une seule ligne par rangée » (liste des quarts). */
.data-table.one-line { font-size: 0.85rem; }
.data-table.one-line th, .data-table.one-line td { white-space: nowrap; padding: 0.6rem 0.4rem; }
/* Tri par clic sur les entêtes (tables .sortable, logique dans _nav.ejs). */
.data-table.sortable th[data-sortable] { cursor: pointer; user-select: none; }
.data-table.sortable th[data-sortable]:hover { color: #1C1917; }
.data-table.sortable th .sort-ind { margin-left: 0.25rem; color: var(--cta); }
/* Cellule à contenu long : tronquée avec « … » (texte complet au survol). */
.data-table .cell-ellipsis {
  max-width: 17rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dot {
  display: inline-block;
  width: 0.7rem; height: 0.7rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.35rem;
}

.cal-add {
  display: inline-block;
  color: #A8A29E;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0.3rem;
  border-radius: 3px;
  position: absolute;
  bottom: 0.2rem;
  right: 0.2rem;
  opacity: 0;
  background: var(--surface-warm);
}
.cal-cell:hover .cal-add { opacity: 1; }
.cal-add:hover { color: var(--cta); background: var(--border-soft); }

/* === Pointage : horloge temps réel === */
.punch-clock {
  text-align: right;
  background: var(--nav-bg, #1E3A8A);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}
.punch-clock-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.punch-clock-time {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

/* ===================================================================
   RESPONSIVE — adaptation téléphone / tablette (structure INCHANGÉE
   par le thème : mêmes règles qu'avant le revamp).
   =================================================================== */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
}

/* ===================================================================
   MENU LATÉRAL GAUCHE (2026-07-11) — inchangé.
   =================================================================== */
@media (min-width: 821px) {
  body:has(> nav.topnav) { padding-left: 200px; }
  .topnav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 200px;
    overflow-y: auto;
    z-index: 90;
  }
  .topnav-inner {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    min-height: 100%;
    max-width: none;
    padding: 1rem 0.75rem;
    gap: 1rem;
  }
  .brand { text-align: center; }
  .brand a { justify-content: center; }
  #navMenu { flex-direction: column; align-items: stretch; gap: 0.15rem; flex: 0 1 auto; }
  .topnav li { width: 100%; }
  .topnav a { display: block; padding: 0.5rem 0.7rem; }
  .topnav .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 0;
    background: rgba(0, 0, 0, 0.15);
    padding: 0;
    border-radius: 4px;
  }
  .topnav .nav-dropdown-menu a { padding-left: 1.5rem; white-space: normal; }
  .nav-user {
    margin-top: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .topnav .nav-user .lang-switcher a { display: inline-block; padding: 0.2rem 0.45rem; }
}
@media (min-width: 821px) and (max-width: 1500px) {
  body:has(> nav.topnav) .container { padding: 1.5rem 1rem; }
  body:has(> nav.topnav) .container .card { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ---- Tablette / téléphone (≤ 820 px) ---- */
@media (max-width: 820px) {
  .topnav-inner { flex-wrap: wrap; gap: 0.5rem 1rem; padding: 0.7rem 1rem; }
  .brand { flex: 1; }
  .nav-toggle { display: block; }

  #navMenu,
  .topnav .nav-user { display: none; flex-basis: 100%; width: 100%; }
  .topnav.nav-open #navMenu,
  .topnav.nav-open .nav-user { display: flex; }

  #navMenu { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .topnav li { width: 100%; }
  .topnav a { display: block; padding: 0.7rem 0.6rem; }

  .topnav .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 0;
    background: rgba(0, 0, 0, 0.15);
    padding: 0;
  }
  .topnav .nav-dropdown-menu a { padding-left: 1.6rem; }

  .nav-user {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .topnav .nav-user .lang-switcher a { display: inline-block; padding: 0.2rem 0.45rem; }
  .topnav .nav-user .lang-switcher { padding: 0.1rem 0; }

  .container { padding: 1rem 0.8rem; }
  .container .card { padding: 1.2rem 1rem; }
  main.card { padding: 1.5rem 1.2rem; }

  .section-head { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .section-head .actions { flex-wrap: wrap; }
  .actions { flex-wrap: wrap; }
  .btn-small { padding: 0.55rem 0.9rem; font-size: 0.9rem; }
}

/* ---- Téléphone (≤ 480 px) ---- */
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  .container { padding: 0.8rem 0.6rem; }
  .container .card { padding: 1rem 0.85rem; }

  /* ≥16px sur les champs : empêche le zoom automatique de iOS au focus. */
  input, textarea, select { font-size: 16px; }

  .inline-form { flex-direction: column; align-items: stretch; }
  .inline-form select, .inline-form input, .inline-form button { width: 100%; min-width: 0; }

  .form-actions { flex-wrap: wrap; }
  .form-actions button, .form-actions .btn-link { width: 100%; text-align: center; }

  .punch-clock { text-align: center; }
}
