   :root {
    --txtColor: #4b5563;
   }
body{color: var(--txtColor);}

.logo-group { display: flex; flex-direction: column; }
.logo-text { font-family: 'Segoe UI', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; }
.logo-text span{ color:#00f;}
.logo-text:hover { color: blue; }
.logo-slogan { font-size: 0.8rem; color: var(--slate-800); font-weight: 500; }
@media (min-width: 768px) {
    .search-wrapper { display: flex; }
    .logo-text { font-size: 1.5rem; }
}

/* ============================================
    breadcrumbs & countries
   ============================================ */
    #countryList li {margin: 0 5px; padding: 0;	list-style: none;	top: 0;	float:left;  }
    #countryList li, #countryList a {height: 14px;width:22px;display: block;}
    #Top{width:100%;display:flex;justify-content: space-between;padding:0 5px;align-items: center;}   
    
/* Breadcrumbs */
.breadcrumbs { font-size: 1rem; color: #222; display: flex; flex-wrap: wrap; align-items: center; gap: 0.4em; margin: 0.2em 0; }
.breadcrumbs a {color: var(--slate-800); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: #005f99; text-underline-offset: 3px; text-decoration: underline; }
.breadcrumbs .current { color: var(--slate-300); font-weight: bold; }
.breadcrumbs span { color: #33f;user-select: none; }


.LeftMenu{background-color:  white;flex-shrink:0;}
/*.MenuCat{all:unset;}*/
.MenuLi{all:unset;}
.MenuUl {
  all:unset;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 2. Base Link Styles */
.MenuLi a, .MenuLi > a, .LeftMenuItem {
  all:unset;
  display: block;
  padding: 0.2rem 1.5rem;
  font-size: 0.95rem;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  cursor: pointer;
}

/* 3. HOVER EFFECT (Targeting links that are NOT active) */
.MenuLi a:not(.active):hover, 
.expandUl > a:not(.active):hover, 
.MenuLi > a:not(.active):hover, 
.LeftMenuItem:not(.active):hover {
  background-color: #f1f5f9;
  color: #2563eb;
  border-left: 5px solid #3b82f6;
  padding-left: 1.75rem;
}
.MenuLi:hover a{transform:scale(1,1);}
/* 4. ACTIVE STATE (The "You are here" look) */
.MenuLi a.active, 
.MenuLi > a.active, 
.LeftMenuItem.active {
  background-color: #eff6ff;
  color: #1e40af;
  font-weight: 700;
  border-left: 3px solid #1e40af;
  cursor: default; /* Tells user they can't click it again */
}

/* 5. Keep Category Headers Static */
.MenuCat {
  /*all:unset !important;*/
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  position: sticky;
  top: 39px;
  background: #ffffff;
  z-index: 10;
  height:unset;
  border:unset;
}

.MenuCat a {
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 2px;
}

/* Scannability Hack: Alternating slight tint for long lists */
.MenuLi:nth-child(even) .LeftMenuItem {
    background-color: rgba(248, 250, 252, 0.5);
}
@media (max-width: 1100px) {
    .MenuCat{top:-17px;}
}

/* Search */
.search-wrapper {
    position: relative;
    display: none;
    align-items: center;
    width: fit-content;
}

/* Make the button transparent and position it */
.search-icon-btn {
    position: absolute;
    left: 5px;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: color 0.2s;
}

/* Hover effect for the icon button */
.search-icon-btn:hover {
    color: #3b82f6; /* Turns blue when hovered */
}
.search-input {
    background-color: #f3f4f6;
    border: 1px solid #cbd5e1;
    border-radius: 66px;
    padding: 8px 12px 8px 38px;
    font-size: 0.875rem;
    width: 16rem;
    outline: none;
    transition: box-shadow 0.2s;
    width:200px;
}
.search-input:focus { box-shadow: 0 0 0 2px #3b82f6; }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #9ca3af; font-size: 0.75rem; }
@media (min-width: 768px) {
    .search-wrapper { display: flex; }
}