/* ============================================================
   Zastepca.pl — Design System
   Paleta: Forest Green (#1A3E28) + Gold (#C9A84C) + Slate
   ============================================================ */

:root {
  --navy-900: #071B10;
  --navy-800: #1A3E28;
  --navy-700: #245C3A;
  --navy-600: #2E7A4D;
  --navy-200: #A8D4B5;
  --navy-100: #D1EDD9;
  --navy-50:  #EBF5EE;

  --gold-600: #A07830;
  --gold-500: #C9A84C;
  --gold-400: #D9BC72;
  --gold-100: #FDF6E3;
  --gold-50:  #FFFBF0;

  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;

  --success: #10B981;
  --warning: #F59E0B;
  --error:   #EF4444;
  --info:    #3B82F6;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(26,62,40,.10);
  --shadow-lg: 0 8px 32px rgba(26,62,40,.14);
  --shadow-xl: 0 16px 48px rgba(26,62,40,.18);

  --sidebar-w: 260px;
  --topbar-h:  64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--slate-100);
  color: var(--navy-800);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: middle; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--topbar-h);
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: -.3px;
}
.brand-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy-800); line-height: 1;
}
.topbar-user {
  display: flex; align-items: center; gap: 12px;
}
.user-name {
  color: var(--slate-200); font-size: .875rem; font-weight: 500;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed; top: var(--topbar-h); left: 0; bottom: 0;
  width: var(--sidebar-w); z-index: 50;
  background: var(--navy-900);
  overflow-y: auto;
  transition: transform .25s ease;
}
.sidebar-inner {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 12px 24px;
  min-height: 100%;
}
.nav-section { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.nav-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy-600);
  padding: 0 12px; margin-bottom: 4px; margin-top: 4px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--slate-400);
  transition: background .15s, color .15s;
}
.nav-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-item.active {
  background: rgba(201,168,76,.15);
  color: var(--gold-400);
}
.mt-auto { margin-top: auto; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  min-height: calc(100vh - var(--topbar-h));
}

/* Auth pages (bez sidebarze) */
.auth-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - var(--topbar-h));
  padding: 40px 16px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.auth-card {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%; max-width: 440px;
  padding: 40px;
}
.auth-card h1 {
  font-size: 1.5rem; font-weight: 800; color: var(--navy-800);
  margin-bottom: 4px;
}
.auth-card p.subtitle { color: var(--slate-500); font-size: .9rem; margin-bottom: 28px; }

/* ============================================================
   PAGE CONTAINER
   ============================================================ */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
}
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.page-title { font-size: 1.4rem; font-weight: 800; color: var(--navy-800); }
.page-subtitle { font-size: .85rem; color: var(--slate-500); margin-top: 2px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}
.card-body { padding: 20px 24px; }
.card-header {
  padding: 16px 24px; border-bottom: 1px solid var(--slate-100);
  font-weight: 700; color: var(--navy-800); font-size: .95rem;
}

/* Listing card */
.listing-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.listing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--gold-400);
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

/* ============================================================
   BADGES & STATUS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: 999px;
  font-size: .73rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase;
}
.badge-active   { background: #D1FAE5; color: #065F46; }
.badge-pending  { background: #FEF3C7; color: #92400E; }
.badge-rejected { background: #FEE2E2; color: #991B1B; }
.badge-completed{ background: var(--navy-100); color: var(--navy-700); }
.badge-admin    { background: var(--gold-100); color: var(--gold-600); }
.badge-verified { background: #D1FAE5; color: #065F46; }
.badge-unverified{ background: var(--slate-100); color: var(--slate-500); }
.badge-suspended{ background: #FEE2E2; color: #991B1B; }

/* ============================================================
   TYPOGRAPHY UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-sm  { font-size: .875rem; }
.text-xs  { font-size: .75rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-navy  { color: var(--navy-800); }
.text-gold  { color: var(--gold-500); }
.text-slate { color: var(--slate-500); }
.text-success { color: var(--success); }
.text-error   { color: var(--error); }
.text-gold-l  { color: var(--gold-600); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900); font-weight: 700; font-size: .875rem;
  padding: 10px 22px; border-radius: var(--radius);
  border: none; transition: opacity .15s, transform .1s;
  text-decoration: none;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: transparent;
  color: var(--navy-700); font-weight: 600; font-size: .875rem;
  padding: 10px 22px; border-radius: var(--radius);
  border: 2px solid var(--slate-200); transition: border-color .15s, background .15s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--navy-600); background: var(--slate-50); }

.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; color: var(--slate-200); font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); transition: background .15s;
}
.btn-outline-sm:hover { background: rgba(255,255,255,.1); }

.btn-danger {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FEE2E2; color: #991B1B; font-weight: 600; font-size: .83rem;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: none; transition: background .15s;
}
.btn-danger:hover { background: #FECACA; }

.btn-success {
  display: inline-flex; align-items: center; gap: 6px;
  background: #D1FAE5; color: #065F46; font-weight: 600; font-size: .83rem;
  padding: 7px 14px; border-radius: var(--radius-sm);
  border: none; transition: background .15s;
}
.btn-success:hover { background: #A7F3D0; }

.w-full { width: 100%; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label {
  font-size: .75rem; font-weight: 700; color: var(--navy-800);
  letter-spacing: .06em; text-transform: uppercase;
}
.form-control {
  width: 100%; padding: 10px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--slate-200); background: #fff;
  font-size: .9rem; color: var(--navy-800);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
textarea.form-control { resize: vertical; min-height: 90px; }
.form-hint { font-size: .75rem; color: var(--slate-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash {
  position: fixed; top: 80px; right: 20px; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600;
  box-shadow: var(--shadow-lg); max-width: 380px;
  animation: slideIn .3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.flash-success { background: #ECFDF5; color: #065F46; border-left: 4px solid var(--success); }
.flash-error   { background: #FFF1F2; color: #9F1239; border-left: 4px solid var(--error); }
.flash-warning { background: #FFFBEB; color: #92400E; border-left: 4px solid var(--warning); }
.flash-info    { background: #EFF6FF; color: #1E40AF; border-left: 4px solid var(--info); }
.flash-close {
  background: transparent; border: none; font-size: 1.2rem;
  line-height: 1; opacity: .5; padding: 0; transition: opacity .15s;
}
.flash-close:hover { opacity: 1; }

/* ============================================================
   TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); }
table { width: 100%; border-collapse: collapse; background: #fff; }
thead th {
  padding: 12px 16px; text-align: left;
  font-size: .73rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--slate-400);
  background: var(--slate-50); border-bottom: 1px solid var(--slate-200);
}
tbody td { padding: 14px 16px; font-size: .875rem; border-bottom: 1px solid var(--slate-100); color: var(--navy-800); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--slate-50); }

/* ============================================================
   STATS / DASHBOARD
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.stat-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 20px 22px;
}
.stat-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-400); margin-bottom: 6px; }
.stat-value { font-size: 2rem; font-weight: 800; color: var(--navy-800); line-height: 1; }
.stat-gold .stat-value { color: var(--gold-600); }

/* ============================================================
   FILTERS
   ============================================================ */
.filters-bar {
  display: flex; align-items: flex-end; gap: 12px;
  flex-wrap: wrap; margin-bottom: 20px;
  padding: 16px 20px; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 140px; }
.filter-label { font-size: .72rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: .05em; }
.filter-control {
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-200); background: #fff;
  font-size: .875rem; color: var(--navy-800); outline: none;
}
.filter-control:focus { border-color: var(--gold-500); }

/* ============================================================
   MODALS
   ============================================================ */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(6,15,30,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--slate-100);
}
.modal-title { font-size: 1.05rem; font-weight: 800; color: var(--navy-800); }
.modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--slate-100); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--slate-400); transition: background .15s;
}
.modal-close:hover { background: var(--slate-200); color: var(--navy-700); }
.modal-body { padding: 20px 24px; }
.modal-footer {
  display: flex; gap: 10px;
  padding: 16px 24px; border-top: 1px solid var(--slate-100);
}

/* ============================================================
   MESSAGES
   ============================================================ */
.messages-layout {
  display: grid; grid-template-columns: 300px 1fr;
  height: calc(100vh - var(--topbar-h) - 60px);
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200); overflow: hidden;
}
.conv-list { border-right: 1px solid var(--slate-100); overflow-y: auto; }
.conv-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--slate-100);
  cursor: pointer; transition: background .15s;
}
.conv-item:hover, .conv-item.active { background: var(--gold-50); }
.conv-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem;
}
.thread-area { display: flex; flex-direction: column; }
.thread-messages { flex: 1; overflow-y: auto; padding: 20px; background: var(--slate-50); display: flex; flex-direction: column; gap: 8px; }
.bubble { max-width: 65%; padding: 10px 14px; border-radius: 16px; font-size: .875rem; line-height: 1.5; }
.bubble-own { align-self: flex-end; background: var(--navy-800); color: #fff; border-bottom-right-radius: 4px; }
.bubble-other { align-self: flex-start; background: #fff; border: 1px solid var(--slate-200); color: var(--navy-800); border-bottom-left-radius: 4px; }
.bubble-time { font-size: .68rem; opacity: .55; margin-top: 4px; display: block; }
.thread-input-area { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--slate-100); background: #fff; }

/* ============================================================
   PROFILE
   ============================================================ */
.profile-header {
  display: flex; align-items: center; gap: 20px;
  padding: 24px; background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.2);
}
.profile-name { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.profile-sub  { font-size: .85rem; color: var(--slate-400); }

/* ============================================================
   AUTH (no sidebar layout fix)
   ============================================================ */
body.page-auth .sidebar,
body.page-auth .sidebar-overlay { display: none; }
body.page-auth .main-content { margin-left: 0; }

/* Strony publiczne (regulamin, polityka) — bez sidebaru nawet dla zalogowanych */
body.page-regulamin .main-content,
body.page-polityka  .main-content { margin-left: 0; }
body.page-regulamin .main-content,
body.page-polityka  .main-content { max-width: 860px; margin: 0 auto; }

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.d-flex   { display: flex; }
.gap-2    { gap: 8px; }
.gap-3    { gap: 12px; }
.gap-4    { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.mb-1  { margin-bottom: 4px; }
.mb-2  { margin-bottom: 8px; }
.mb-3  { margin-bottom: 12px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.p-4   { padding: 16px; }
.py-2  { padding-top: 8px; padding-bottom: 8px; }
.py-8  { padding-top: 32px; padding-bottom: 32px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.text-right     { text-align: right; }
.divider { border: none; border-top: 1px solid var(--slate-200); margin: 20px 0; }
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--slate-400);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state h3 { font-size: 1rem; font-weight: 700; color: var(--slate-500); margin-bottom: 6px; }

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

/* iOS: zapobiega auto-zoom przy focus na input */
@supports (-webkit-touch-callout: none) {
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 768px) {

  /* --- Sidebar --- */
  .sidebar {
    transform: translateX(-100%);
    z-index: 200;
    width: 280px;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay {
    display: block; opacity: 0; pointer-events: none;
    transition: opacity .25s; z-index: 199;
  }
  .sidebar-overlay.open { opacity: 1; pointer-events: all; }
  .main-content { margin-left: 0; }

  /* --- Hamburger --- */
  .hamburger {
    display: flex !important; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: transparent; border: none;
    color: var(--navy-800); cursor: pointer; flex-direction: column; gap: 5px;
    padding: 0; flex-shrink: 0;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: transform .2s;
  }

  /* --- Topbar --- */
  .topbar-inner { padding: 0 12px; }
  .topbar-user { gap: 6px; }
  .topbar-user .user-name { display: none; }
  .topbar-user a { font-size: .75rem !important; padding: 6px 10px !important; }
  .brand span { font-size: 1rem; }
  .brand-icon { width: 30px; height: 30px; font-size: .9rem; }

  /* --- Layouts --- */
  .form-row { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-container { padding: 16px 12px; }
  .card-body { padding: 16px; }

  /* --- Tables: poziomy scroll --- */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-wrap table { min-width: 580px; }

  /* --- Formularze: większe touch targety --- */
  .btn-primary, .btn-outline { min-height: 44px; padding: 12px 18px; }
  .btn-danger, .btn-success { min-height: 40px; }
  .form-control { min-height: 44px; font-size: 16px; }

  /* --- Messages: panel toggle (JS steruje klasą .show-thread) --- */
  .msg-panel-list  { display: block; width: 100%; }
  .msg-panel-thread { display: none; width: 100%; flex-direction: column; }
  .msg-show-thread .msg-panel-list   { display: none; }
  .msg-show-thread .msg-panel-thread { display: flex; height: calc(100dvh - 130px); }
  .msg-back-btn { display: flex !important; }

  /* --- Auth card --- */
  .auth-card { padding: 24px 20px; }

  /* --- Profile header --- */
  .profile-header { flex-direction: column; text-align: center; padding: 20px 16px; }
  .profile-avatar { margin: 0 auto; }

  /* --- Page header --- */
  .page-header { flex-direction: column; align-items: flex-start; }
  .page-header .btn-primary { width: 100%; justify-content: center; }
}

@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .msg-back-btn { display: none !important; }
  .msg-panel-list  { display: block; }
  .msg-panel-thread { display: flex; flex-direction: column; }
}

/* ============================================================
   WYMUSZENIE JASNEGO PASKA NAWIGACJI (TOPBAR) NA STAŁE
   ============================================================ */
.topbar, 
.topbar.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid var(--slate-200) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: none !important; /* Blokuje efekt płynnej zmiany koloru z JS */
}

/* Ciemny tekst logo na jasnym tle */
.topbar .brand {
    color: var(--navy-800) !important;
}

/* Kolor ikonek i tekstu w logo */
.topbar .brand-icon {
    color: var(--navy-800) !important;
}

/* Linki "Zaloguj się" itp. na jasnym tle — bez !important, by inline color:#fff działało */
.topbar .topbar-user span,
.topbar .user-name {
    color: var(--slate-600) !important;
}
.topbar .topbar-user a:not([style*="background"]) {
    color: var(--slate-600);
}

/* Efekt najechania myszką na linki (tylko te bez własnego tła) */
.topbar .topbar-user a:not([style*="background"]):hover {
    color: var(--navy-800);
}

/* Ikona menu mobilnego (hamburger) w ciemnym kolorze */
.topbar .hamburger,
.topbar .hamburger span {
    color: var(--navy-800) !important;
}