
/* bar-slim.css — reduce top bar & progress bar heights by ~40% */
:root{
  /* original progress height ~10px; 40% reduction => 6px */
  --progress-h: 6px;
}

/* Topbar vertical padding: assume original ~10px; reduce to 6px */
.topbar-inner{
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Progress track thickness */
.progress-wrap,
#progressBar{
  height: var(--progress-h) !important;
}


/* Align topbar edges perfectly: remove flex gap that creates extra purple margins */
.topbar-inner{
  gap: 0 !important;           /* no extra flex gap strips */
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Keep comfortable space between title and icons without affecting edge symmetry */
.topbar-inner .title{ padding-right: 12px !important; }
.topbar-inner .icons{ margin-right: 0 !important; }
.icon-btn{ margin: 0 !important; }
