/* ===================================================================
   base.css - Refactored Production Version (Navbar & Footer free)
   Site-wide styles for JobNav: variables, layout, buttons, sidebar, hero.
   
   SECTIONS:
   0. Reset & Normalization
   1. Design Tokens (CSS Variables)
   2. Global Layout & Typography
   3. Button System
   4. Sidebar Components
   5. Performance & Accessibility
   =================================================================== */

/* =====================================================================
   SECTION 0: RESET & ELEMENT NORMALIZATION
   - Predictable box model
   - Clean images/lists
   - Accessibility improvements
   ===================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { 
  max-width: 100%; 
  display: block; 
  height: auto;
}

ul { 
  list-style: none; 
}

/* Skip to content link for screen readers */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =====================================================================
   SECTION 1: DESIGN TOKENS (CSS VARIABLES)
   - Color palette with WCAG contrast ratios
   - Typography scale
   - Spacing system
   - Animation values
   ===================================================================== */
:root {
  /* === Header Dimensions === */
  --header-height-mobile: 64px;
  --header-height-desktop: 80px;
  --header-height: var(--header-height-mobile);

  /* === Typography === */
  --font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height-base: 1.6;
  --line-height-tight: 1.4;

  /* === Brand Colors === */
  --primary-color: #010080;
  --primary-color-hover: #000066;
  --primary-color-light: rgba(1, 0, 128, 0.08);
  --primary-color-lighter: rgba(1, 0, 128, 0.04);
  --secondary-color: #212121;
  --secondary-color-light: #1414a0;
  --light-color: #ffffff;
  
  /* === Gray Scale === */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  
  /* === Semantic Colors === */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #3b82f6;
  
  /* === Interactive States === */
  --border-color-subtle: var(--gray-300);
  --hover-bg-light: var(--gray-50);
  --focus-ring-color: rgba(1, 0, 128, 0.5);
  --focus-ring-width: 2px;
  --focus-ring-offset: 2px;

  /* === Avatar System (used by navbar.css) === */
  --avatar-size: 44px;
  --avatar-font-scale: 0.4;
  --avatar-fg: var(--primary-color);
  --avatar-bg: #ffcc00;
  --avatar-bg-gradient: linear-gradient(135deg, #ffcc00 0%, #ff9500 100%);

  /* === Frosted Glass Effect (Mobile Nav) – used by navbar.css === */
  --frost-tint-rgb: 1, 0, 128;
  --frost-alpha: 0.65;
  --frost-alpha-scrolled: 0.75;
  --frost-blur: 20px;
  --frost-border: rgba(255, 255, 255, 0.3);
  --frost-shadow: 0 8px 32px rgba(1, 0, 128, 0.3);

  /* === Animations & Transitions === */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.2s ease-out;
  --transition-slow: 0.3s ease-out;
  --animation-slide-down: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* === Spacing Scale === */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* === Border Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* === Shadows === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* === Responsive Variable Adjustments === */
@media (min-width: 768px) {
  :root { 
    --header-height: var(--header-height-desktop);
    --avatar-size: 48px;
  }
}

@media (min-width: 1200px) {
  :root { 
    --avatar-size: 52px;
  }
}

/* =====================================================================
   SECTION 2: GLOBAL LAYOUT & TYPOGRAPHY
   - Flexbox sticky footer pattern
   - Responsive text hierarchy
   - Enhanced focus states
   ===================================================================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--gray-900);
  background-color: var(--light-color);
}

main {
  flex: 1 0 auto;
  /* add a small gap under the navbar */
  padding-top: calc(var(--header-height) + 8px);
}

/* === Typography Hierarchy === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  color: var(--secondary-color);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em;
}

h2 { 
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: var(--font-weight-semibold);
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
}

h5 { 
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-md);
  color: var(--gray-700);
}

/* === Links === */
a {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--primary-color-hover);
  text-decoration: none;
}

/* === Utility Classes === */
.hide-on-mobile { 
  display: block; 
}

.show-on-mobile { 
  display: none !important; 
}

.section { 
  padding: clamp(3rem, 8vw, 5rem) 0; 
}

/* === Enhanced Focus States for Accessibility === */
a:focus-visible,
button:focus-visible,
.nav-icon:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
  border-radius: var(--radius-sm);
}

/* =====================================================================
   SECTION 3: BUTTON SYSTEM (GLOBAL)
   - Consistent button styles
   - Hover and focus states
   - Multiple variants (primary, secondary, light)
   ===================================================================== */
.btn {
  font-family: var(--font-family);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-lg);
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

/* === Primary Button === */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-hover) 100%);
  color: var(--light-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-color-hover) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  border-color: var(--primary-color-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* === Secondary Button === */
.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary-color);
  color: var(--light-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* === Light Button === */
.btn-light {
  background-color: var(--light-color);
  color: var(--primary-color);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover,
.btn-light:focus {
  background-color: var(--gray-50);
  color: var(--primary-color-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* === Small Button Variant === */
.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-sm);
}

/* =====================================================================
   SECTION 4: SIDEBAR COMPONENTS
   - Modern card-based sidebar widgets
   - Smooth animations and hover effects
   - Icon integration with enhanced visual hierarchy
   ===================================================================== */

/* Outer sidebar card */
aside .sidebar-card {
  margin-bottom: var(--space-lg);
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px rgba(1, 0, 128, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

aside .sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #3d3db3 100%);
}

aside .sidebar-card:hover {
  box-shadow: 0 8px 24px rgba(1, 0, 128, 0.12);
  transform: translateY(-2px);
}

/* keep generic card styling for any other aside cards */
aside .card {
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-color-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
  background-color: var(--light-color);
}

aside .card:hover {
  box-shadow: var(--shadow-md);
}

/* ----- Header area with icon + title ----- */
.sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  margin-bottom: 0;
  border-bottom: none;
}

.sidebar-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-color) 0%, #2929a3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--light-color);
  box-shadow: 0 4px 12px rgba(1, 0, 128, 0.2);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.sidebar-card:hover .sidebar-logo {
  transform: scale(1.05);
}

.sidebar-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  letter-spacing: -0.01em;
}

.sidebar-welcome-text {
  margin: 0;
  font-size: 0.813rem;
  color: var(--gray-600);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

/* ----- Main nav list ----- */
.sidebar-list {
  list-style: none;
  padding: var(--space-md);
  margin: 0;
  background-color: transparent;
  border-radius: 0;
}

.sidebar-list li {
  padding: 0;
  margin-bottom: var(--space-xs);
  transition: all var(--transition-fast);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-md);
  position: relative;
}

/* last item without margin */
.sidebar-list li:last-child {
  margin-bottom: 0;
}

/* Active state coming from template `class="active"` */
.sidebar-list li.active {
  background: linear-gradient(135deg, rgba(1, 0, 128, 0.08) 0%, rgba(1, 0, 128, 0.12) 100%);
  border-left: none;
  font-weight: var(--font-weight-semibold);
}

.sidebar-list li.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, var(--primary-color) 0%, #3d3db3 100%);
  border-radius: 0 2px 2px 0;
}

/* Hover / focus states */
.sidebar-list li:hover,
.sidebar-list li:focus-within {
  background-color: rgba(1, 0, 128, 0.04);
  transform: translateX(2px);
}

.sidebar-list li a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 0.938rem;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.sidebar-list li.active a {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
}

.sidebar-list li a:hover,
.sidebar-list li a:focus {
  color: var(--primary-color-hover);
  text-decoration: none;
}

/* Icons in list items */
.sidebar-list li i {
  margin-right: 0;
  color: var(--gray-600);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.sidebar-list li.active i {
  color: var(--primary-color);
  transform: scale(1.1);
}

.sidebar-list li:hover i {
  color: var(--primary-color);
}

/* ----- AI badge at bottom of card ----- */
.ai-powered-badge {
  margin: var(--space-md) var(--space-lg) var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ffcc00 0%, #ffb800 100%);
  color: var(--primary-color);
  font-size: 0.813rem;
  font-weight: var(--font-weight-bold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(255, 204, 0, 0.3);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ai-powered-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

.ai-powered-badge i {
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* ----- Sidebar adverts block ----- */
.sidebar-adverts {
  margin-top: var(--space-lg);
}

.sidebar-adverts-title {
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-xs);
}

.advert-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: none;
  background-color: var(--light-color);
  transition: all var(--transition-base);
  margin: 15px 0;
}

.advert-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.advert-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.advert-card:hover .advert-img {
  transform: scale(1.02);
}


/* =====================================================================
   SECTION 5: PERFORMANCE & ACCESSIBILITY
   - Reduced motion support
   - Dark mode preparation
   ===================================================================== */

/* Respect user's motion preferences (global) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark mode variables placeholder */
@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode variables can be added here when needed */
  }
}

/* Ensure hero section and search form respect viewport */
.hero-section {
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-search-form {
  max-width: 100%;
}

.hero-search-form .form-control {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure all containers respect mobile viewport AND prevent horizontal overflow */
@media (max-width: 767.98px) {
  .container,
  .container-fluid {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    max-width: 100vw;
  }
  
  /* Prevent form elements from overflowing */
  input[type="text"],
  input[type="search"],
  .form-control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Preserve original overflow fixes from navbar section */
  body.homepage {
    overflow-x: hidden;
  }
  
  main {
    overflow-x: hidden;
  }
}

@media(max-width: 767px){
  .hide-on-mobile,
  #job-card-header.hide-on-mobile{
    display: none !important;
  }
  .show-on-mobile{
    display: block !important;
  }

  .page-header-section .container-fluid{
    padding: 0 !important;
  }

  #mobile-filter-toggle,
  #mobile-filter-toggle:hover{
    padding:10px;
    background: none;
    color: #ffffff !important;
    border:none;
    text-decoration: none;
    border-radius: 0;
  }
  #main-content .page-header-section a,
  #main-content .page-header-section button,
  #main-content .page-header-section a span,
  #main-content .page-header-section button span,
  #main-content .page-header-section a i,
  #main-content .page-header-section button i{
    font-size:12px;
    color: var(--primary-color) !important;
    background: none !important;
    border:none;
    border-radius: 0;
    box-shadow: none !important;
  }
  #main-content .page-header-section .filter-count-badge{
    color: #ffffff !important;
    background: red !important;
    border-radius: 100px;
  }
  .page-header-section .container-fluid .row .col-sm-4:last-child{
    text-align: right;
  }
  #mobile-filter-toggle{
    width: auto !important;
  }
  .page-header-section .btn-primary:hover,
  #mobile-filter-toggle:hover{
    color: #ffffff !important;
    background: #1a3fb8;
  }
  .page-header-section .container-fluid .col-sm-4{
    max-width: 33.333%;
    flex:0 0 33.333%;
  }

  .container-fluid{
    padding: 0;
  }
  #job-card-header .top-column,
  #job-card-header .bottom-column button{
    order: 2;
  }
  #job-card-header .bottom-column{
      flex-direction: row !important;
      margin-top:0 !important;
   }
  #job-card-header .bottom-column button{
    display: inline-flex;
    width: 33.33333%;
    max-width: 33.33333% !important;
  }
  #job-card-header .bottom-column .d-flex{
    display: inline-flex;
    width: 66.333333%;
    max-width: 66.333333% !important;
  }
  #job-card-header .btn span{
    margin:0 3px !important;
  }
   #job-card-header .bottom-column button{
    justify-content: flex-end;
   }
   #job-card-header .bottom-column .d-flex a.btn-primary.btn-small{
    justify-content: flex-start;
   }
  #job-card-header .bottom-column button,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small span,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small i{
    padding:5px;
    background: none !important;
    border:none !important;
    border-radius: 0;
    box-shadow: none !important;
    color: #010080 !important;
    height: auto !important;
  }
  #job-card-header .bottom-column button:hover,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small:hover{
    color: #010080 !important;
  }
  #job-card-header .label-heading{
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .sidebar-card{
    margin-top: 25px;
  }
 
}
@media(max-width: 560px){
  .container-fluid{
    padding: 0;
  }
  #job-card-header .top-column,
  #job-card-header .bottom-column button{
    order: 2;
  }
  #job-card-header .bottom-column{
      flex-direction: row !important;
      margin-top:0 !important;
   }
  #job-card-header .bottom-column button{
    display: inline-flex;
    width: 33.33333%;
    max-width: 33.33333% !important;
  }
  #job-card-header .bottom-column .d-flex{
    display: inline-flex;
    width: 66.333333%;
    max-width: 66.333333% !important;
  }
  #job-card-header .btn span{
    margin:0 3px !important;
    font-size: 12px;
  }
   #job-card-header .bottom-column button{
    justify-content: flex-end;
   }
   #job-card-header .bottom-column .d-flex a.btn-primary.btn-small{
    justify-content: flex-start;
   }
  #job-card-header .bottom-column button,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small span,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small i{
    padding:0;
    background: none !important;
    border:none !important;
    border-radius: 0;
    box-shadow: none !important;
    color: #010080 !important;
    height: auto !important;

  }
  #job-card-header .bottom-column button:hover,
  #job-card-header .bottom-column .d-flex a.btn-primary.btn-small:hover{
    color: #010080 !important;
  }
  #job-card-header .label-heading{
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  .front .meta-box{
    margin: 0 0 10px 0;
  }

  .page-header-section .container-fluid .col-sm-4 a,
  .page-header-section .container-fluid .col-sm-4 button{
    font-size: 11px !important;
    margin:0 !important;
  }
}

@media(max-width: 560px){
  .page-header-section .container-fluid .row .col-sm-4:nth-child(2){
    text-align: center;
  }
  .page-header-section .container-fluid .row .col-sm-4:last-child{
    text-align: right;
  }
  .page-header-section .container-fluid .col-sm-4 a,
  .page-header-section .container-fluid .col-sm-4 button{
    width: auto !important;
  }
  .page-header-section .container-fluid .col-sm-4 a,
  .page-header-section .container-fluid .col-sm-4 #mobile-filter-toggle{
    padding: 5px 7px;
  }
  .page-header-section .container-fluid .col-sm-4 a span,
  .page-header-section .container-fluid .col-sm-4 button span{
    display: none;
  }
  .page-header-section .container-fluid .col-sm-4 a i,
  .page-header-section .container-fluid .col-sm-4 button i{
   font-size: 16px !important;
  }
  .page-header-section .filter-count-badge{
    margin:0 !important;
    font-size: 12px;
    width: 18px;
    height: 18px;
  }
}