/* Fő brandszín: #27b250 */
:root {
  --brand-color: #27b250;
  --brand-hover: #1f8d3e;
  --brand-light: rgba(39, 178, 80, 0.1);
}

/* Header/Nav háttér zöld */
header, nav {
  background-color: var(--brand-color) !important;
  border-bottom: none;
}

/* Header linkek fehérre */
header a, nav a {
  color: white !important;
}

header a:hover, nav a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Nyelvválasztó stílusok */
.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 20px;
  margin-left: auto;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}

.lang-label {
  font-size: 1.2em;
  margin-right: 5px;
  color: white !important;
}

.lang-link {
  padding: 6px 12px;
  background: transparent;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lang-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  transform: translateY(-2px);
}

.lang-link.active {
  font-weight: bold;
  color: white !important;
  text-decoration: underline;
}

/* Dark mode gomb áthelyezése */
#mode {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Badge számok zöldek */
span[class*="badge"],
.badge {
  background-color: var(--brand-color) !important;
  color: white !important;
}

/* Sidebar categories és tags zöld doboz eltüntetése */
aside .tags,
aside .categories,
.sidebar .tags,
.sidebar .categories {
  background: transparent !important;
  background-color: transparent !important;
}

/* Footer link stílus */
.footer_divider {
  margin: 0 10px;
}

.footer a {
  color: var(--brand-color);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  #mode {
    position: static;
    transform: none;
  }
  
  .language-switcher {
    position: static;
    transform: none;
    flex-wrap: wrap;
    padding: 8px 12px;
    margin-top: 10px;
  }
  
  .lang-link {
    font-size: 0.8em;
    padding: 4px 8px;
  }
}