/* ===========================
   ECOSSISTEMA — dark-mode toggle button
   All layout/component styles live in seo-landing.css.
   =========================== */

/* Theme toggle button — shared across _LandingLayout.cshtml and SeoLayout.razor */
[data-theme-toggle] {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}

[data-theme-toggle]:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}
