/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --primary: #1E40AF;
  --primary-light: #3B82F6;
  --primary-dark: #1E3A8A;
  --success: #059669;
  --warning: #D97706;
  --danger: #DC2626;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --sidebar-width: 240px;
  --header-height: 60px;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--gray-800); background: var(--gray-50); }
a { color: var(--primary); text-decoration: none; }
button { cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ============================================================
   PAGE CONNEXION
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 60%, #3B82F6 100%);
}

.login-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.login-logo h1 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-top: .75rem; }
.login-logo p { color: var(--gray-500); font-size: .875rem; margin-top: .25rem; }

.login-form .form-group { margin-bottom: 1rem; }
.login-form label { display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700); margin-bottom: .375rem; }
.login-form input {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .9375rem;
  transition: border-color .15s;
}
.login-form input:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(59,130,246,.15); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: background .15s, border-color .15s, opacity .15s;
}
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-secondary { background: white; color: var(--gray-700); border-color: var(--gray-300); }
.btn-secondary:hover:not(:disabled) { background: var(--gray-50); }
.btn-success { background: var(--success); color: white; border-color: var(--success); }
.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-full { width: 100%; justify-content: center; padding: .75rem; font-size: 1rem; }
.btn-sm { padding: .3rem .7rem; font-size: .8125rem; }

/* ============================================================
   MESSAGES
   ============================================================ */
.error-message {
  background: #FEF2F2;
  color: var(--danger);
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: .625rem .875rem;
  font-size: .875rem;
  margin-bottom: 1rem;
}
.success-message {
  background: #F0FDF4;
  color: var(--success);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  padding: .625rem .875rem;
  font-size: .875rem;
  margin-bottom: 1rem;
}
.warning-message {
  background: #FFFBEB;
  color: var(--warning);
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: .625rem .875rem;
  font-size: .875rem;
}

/* ============================================================
   LAYOUT APPLICATION
   ============================================================ */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: var(--gray-900);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-header {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.sidebar-header svg { flex-shrink: 0; }
.sidebar-header h2 { font-size: .9375rem; font-weight: 700; line-height: 1.2; }
.sidebar-header p { font-size: .75rem; color: var(--gray-400); margin-top: .125rem; }

.sidebar-nav { flex: 1; padding: .75rem 0; }
.nav-section { margin-bottom: 1.5rem; }
.nav-section-title {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  padding: 0 1rem .5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: var(--gray-400);
  border-radius: 0;
  transition: background .1s, color .1s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-item:hover { background: rgba(255,255,255,.06); color: white; }
.nav-item.active { background: var(--primary); color: white; }
.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.user-info { display: flex; align-items: center; gap: .625rem; margin-bottom: .625rem; }
.user-avatar {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.user-name { font-size: .875rem; font-weight: 500; }
.user-role { font-size: .75rem; color: var(--gray-400); }

/* Main content */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  height: var(--header-height);
  background: white;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.top-bar h1 { font-size: 1.125rem; font-weight: 600; flex: 1; }
#top-bar-actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }

.page-content { padding: 1.5rem; flex: 1; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.card-header h2 { font-size: 1rem; font-weight: 600; }
.card-body { padding: 1.25rem; }

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; color: var(--gray-700); margin-bottom: .375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .5625rem .8125rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .9375rem;
  background: white;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.form-hint { font-size: .8125rem; color: var(--gray-500); margin-top: .25rem; }

/* Classe autonome utilisable hors .form-group (ex: tableaux de saisie) */
.form-control {
  width: 100%;
  padding: .5rem .7rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  color: var(--gray-900);
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: .375rem;
}

/* ============================================================
   TABLEAUX
   ============================================================ */
.table-wrapper { overflow-x: auto; }
.table-sticky  { overflow: auto; max-height: calc(100vh - var(--header-height) - 5rem); }
.table-sticky thead th { position: sticky; top: 0; z-index: 10; }
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
thead th {
  background: var(--gray-50);
  padding: .625rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .8125rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
tbody td {
  padding: .4rem .75rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--gray-50); }

/* Colonne nom client : tronque si trop long */
td.col-client-name {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-blue { background: #EFF6FF; color: #1D4ED8; }
.badge-green { background: #F0FDF4; color: #15803D; }
.badge-orange { background: #FFFBEB; color: #B45309; }
.badge-red { background: #FEF2F2; color: #B91C1C; }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* ============================================================
   STATS / KPI
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.stat-label { font-size: .8125rem; color: var(--gray-500); margin-bottom: .375rem; }
.stat-value { font-size: 1.75rem; font-weight: 700; color: var(--gray-900); }
.stat-sub { font-size: .8125rem; color: var(--gray-500); margin-top: .25rem; }
.stat-ok { color: var(--success); }
.stat-warn { color: var(--warning); }
.stat-danger { color: var(--danger); }

/* ============================================================
   BARRE DE PROGRESSION
   ============================================================ */
.progress-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .3s;
}
.progress-fill.ok { background: var(--success); }
.progress-fill.warn { background: var(--warning); }
.progress-fill.over { background: var(--danger); }

/* ============================================================
   SAISIE DES TEMPS
   ============================================================ */
.time-entry-form { max-width: 600px; }

.daily-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .9375rem;
}
.daily-summary.ok { background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--success); }
.daily-summary.warn { background: #FFFBEB; border: 1px solid #FDE68A; color: var(--warning); }
.daily-summary.empty { background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-600); }
.daily-summary strong { font-size: 1.25rem; font-weight: 700; }

.time-entries-list { margin-top: 1.5rem; }
.time-entry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .5rem;
}
.time-entry-item:hover { border-color: var(--gray-300); }
.entry-info { flex: 1; }
.entry-client { font-weight: 600; font-size: .9375rem; }
.entry-details { font-size: .8125rem; color: var(--gray-500); margin-top: .125rem; }
.entry-hours { font-size: 1.125rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.entry-actions { display: flex; gap: .5rem; }

/* ============================================================
   CHARGEMENT (WORKLOAD)
   ============================================================ */
.workload-table th, .workload-table td { text-align: center; padding: .5rem .625rem; font-size: .8125rem; }
.workload-table th:first-child, .workload-table td:first-child { text-align: left; padding-left: 1rem; position: sticky; left: 0; background: inherit; }
.workload-cell { display: flex; flex-direction: column; gap: 2px; }
.workload-planned { color: var(--gray-500); font-size: .75rem; }
.workload-actual { font-weight: 600; }
.workload-ok { color: var(--success); }
.workload-under { color: var(--warning); }
.workload-over { color: var(--danger); }

/* ============================================================
   MODALES
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.modal {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-size: 1.0625rem; font-weight: 600; }
.modal-close {
  background: none; border: none;
  color: var(--gray-400); font-size: 1.5rem; line-height: 1;
  padding: .25rem; border-radius: 4px;
}
.modal-close:hover { color: var(--gray-700); background: var(--gray-100); }
.modal-body { padding: 1.5rem; }
.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: flex-end; gap: .625rem;
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.flex { display: flex; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.text-gray { color: var(--gray-500); }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }

.loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray-400);
  font-size: .9375rem;
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
}
.empty-state p { margin-top: .5rem; font-size: .875rem; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

/* ============================================================
   COLLABORATEURS
   ============================================================ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.collab-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
  position: relative;
}
.collab-card:hover { box-shadow: var(--shadow-md); }
.collab-card--inactive { opacity: .6; }

.collab-card__header {
  background: var(--gray-50);
  padding: 1.5rem 1rem 1rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--gray-100);
}

.collab-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.collab-card__body {
  padding: .875rem 1rem;
  flex: 1;
}

.collab-name {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--gray-800);
  margin-bottom: .15rem;
}

.collab-email {
  font-size: .8125rem;
  color: var(--gray-400);
  margin-bottom: .5rem;
  word-break: break-all;
}

.collab-missions {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: .5rem 0 .25rem;
  min-height: 1.5rem;
}

.collab-rates {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
}

.collab-rate {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: .4rem .5rem;
  text-align: center;
}

.collab-rate__label {
  display: block;
  font-size: .6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.collab-rate__value {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: .1rem;
}

.collab-card__footer {
  padding: .75rem 1rem;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   TABLEAU BUDGETS MISSIONS
   ============================================================ */
.budget-table tbody tr { transition: background .1s; }

.budget-row-client td {
  background: var(--gray-100);
  padding-top: .75rem;
  padding-bottom: .75rem;
  border-top: 2px solid var(--gray-300);
}

.budget-row-exercise td {
  background: var(--gray-50);
}

.budget-row-mission td {
  background: white;
}

.budget-table tfoot td {
  background: var(--gray-800);
  color: white;
  font-weight: 700;
  padding: .75rem 1rem;
  border-top: 2px solid var(--gray-600);
}

/* ============================================================
   GESTIONNAIRE DE TYPES (missions / tâches)
   ============================================================ */
/* ============================================================
   AFFECTATIONS INLINE (tableau clients)
   ============================================================ */
.assign-th {
  min-width: 90px;
  font-size: .8125rem;
  text-align: center;
  white-space: nowrap;
}

.assign-cell {
  min-width: 100px;
  max-width: 160px;
  cursor: pointer;
  text-align: center;
  transition: background .1s;
  vertical-align: middle;
}
.assign-cell:hover { background: var(--gray-50); }
.assign-cell.assign-cell--open { background: var(--gray-50); }
.assign-cell--disabled { cursor: default; }

.closing-cell { text-align: left; }
.closing-cell--edit { cursor: pointer; transition: background .1s; }
.closing-cell--edit:hover { background: var(--gray-50); }

.assign-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
}

.assign-chip {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 999px;
  padding: .15rem .55rem;
  white-space: nowrap;
}

.assign-empty {
  color: var(--gray-300);
  font-size: .875rem;
}

/* Dropdown custom (position: fixed pour échapper aux overflow parents) */
.assign-dropdown {
  position: fixed;
  z-index: 9999;
  background: white;
  border: 1.5px solid var(--primary-light);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  min-width: 180px;
  max-height: 260px;
  overflow-y: auto;
  padding: .35rem 0;
}

.assign-dropdown-item {
  padding: .45rem .85rem;
  font-size: .8125rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--gray-700);
  transition: background .1s;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.assign-dropdown-item:hover { background: var(--gray-50); }
.assign-dropdown-item--check { user-select: none; }
.assign-dropdown-item--check input[type=checkbox] { cursor: pointer; accent-color: var(--primary); }
.assign-dropdown-item--none { color: var(--gray-400); font-style: italic; }

/* ============================================================
   GESTIONNAIRE DE TYPES (missions / tâches)
   ============================================================ */
.type-manager-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.type-manager-row:last-child { border-bottom: none; }

.color-picker {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .1s, border-color .1s;
  padding: 0;
}
.color-dot:hover { transform: scale(1.15); }
.color-dot.selected {
  border-color: var(--gray-800);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px white, 0 0 0 4px var(--gray-800);
}

/* ── Processus : pills de mois ── */
.month-pill {
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1.5px solid #CBD5E1;
  background: #F8FAFC;
  color: #64748B;
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.month-pill:hover {
  border-color: #93C5FD;
  background: #EFF6FF;
  color: #1D4ED8;
}
.month-pill.active {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #fff;
}


/* ============================================================
   CABINET — Fiche informations cabinet
   ============================================================ */
.cab-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.cab-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem 1.5rem;
}

.cab-field {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.cab-field-full {
  grid-column: 1 / -1;
}

.cab-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-400);
}

.cab-value {
  font-size: .9375rem;
  color: var(--gray-800);
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Laptop moyen : sidebar plus étroite */
@media (max-width: 1100px) {
  :root { --sidebar-width: 200px; }
}

/* Petits écrans : sidebar réduite en icônes seules */
@media (max-width: 860px) {
  :root { --sidebar-width: 56px; }
  .sidebar-header h2,
  .sidebar-header p,
  .nav-section-title,
  .nav-label,
  .user-name,
  .user-role { display: none; }
  .nav-item { justify-content: center; padding: .65rem; }
  .nav-item svg { width: 20px; height: 20px; }
  .sidebar-footer { padding: .5rem; }
  .sidebar-header { justify-content: center; padding: .75rem; }
  .user-info { justify-content: center; }
  #btn-logout .nav-label { display: none; }
  #btn-logout { padding: .4rem; min-width: unset; justify-content: center; }
  .page-content { padding: 1rem; }
}
