@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   Keywind Account Console SPA restyle
   Matches login FreeMarker palette + landscape
   ============================================ */

:root {
  --kw-primary-50: #eff6ff;
  --kw-primary-100: #dbeafe;
  --kw-primary-200: #bfdbfe;
  --kw-primary-500: #3b82f6;
  --kw-primary-600: #2563eb;
  --kw-primary-700: #1d4ed8;
  --kw-surface: #ffffff;
  --kw-surface-muted: #f4f4f5;
  --kw-page-bg: #fafafa;
  --kw-border: #e4e4e7;
  --kw-border-strong: #d4d4d8;
  --kw-text: #18181b;
  --kw-text-muted: #71717a;
  --kw-text-subtle: #a1a1aa;
  --kw-link: var(--kw-primary-600);
  --kw-link-hover: var(--kw-primary-700);
  --kw-primary-button-bg: var(--kw-primary-600);
  --kw-primary-button-bg-hover: var(--kw-primary-700);
  --kw-primary-button-text: #ffffff;
  --kw-focus: rgb(37 99 235 / 0.15);
  --kw-radius: 1rem;
  --kw-radius-lg: 1.25rem;
  --kw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --kw-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);

  /* PatternFly v4/v5 tokens → Keywind */
  --pf-global--BackgroundColor--100: transparent;
  --pf-global--BackgroundColor--light-100: var(--kw-surface);
  --pf-global--BackgroundColor--light-200: var(--kw-surface-muted);
  --pf-global--BorderColor--100: var(--kw-border);
  --pf-global--BorderColor--200: var(--kw-border-strong);
  --pf-global--Color--100: var(--kw-text);
  --pf-global--Color--200: var(--kw-text-muted);
  --pf-global--link--Color: var(--kw-link);
  --pf-global--link--Color--hover: var(--kw-link-hover);
  --pf-global--primary-color--100: var(--kw-primary-600);
  --pf-global--primary-color--200: var(--kw-primary-700);
  --pf-global--FontFamily--sans-serif: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --pf-v5-global--BackgroundColor--100: transparent;
  --pf-v5-global--BackgroundColor--light-100: var(--kw-surface);
  --pf-v5-global--BackgroundColor--light-200: var(--kw-surface-muted);
  --pf-v5-global--BorderColor--100: var(--kw-border);
  --pf-v5-global--BorderColor--200: var(--kw-border-strong);
  --pf-v5-global--Color--100: var(--kw-text);
  --pf-v5-global--Color--200: var(--kw-text-muted);
  --pf-v5-global--link--Color: var(--kw-link);
  --pf-v5-global--link--Color--hover: var(--kw-link-hover);
  --pf-v5-global--primary-color--100: var(--kw-primary-600);
  --pf-v5-global--primary-color--200: var(--kw-primary-700);
  --pf-v5-global--FontFamily--text: Inter, ui-sans-serif, system-ui, sans-serif;
  --pf-v5-global--FontFamily--heading: Inter, ui-sans-serif, system-ui, sans-serif;

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --kw-primary-50: #172554;
    --kw-primary-100: #1e3a8a;
    --kw-primary-200: #1e40af;
    --kw-primary-500: #60a5fa;
    --kw-primary-600: #3b82f6;
    --kw-primary-700: #2563eb;
    --kw-page-bg: #09090b;
    --kw-surface: #18181b;
    --kw-surface-muted: #27272a;
    --kw-border: #27272a;
    --kw-border-strong: #3f3f46;
    --kw-text: #fafafa;
    --kw-text-muted: #a1a1aa;
    --kw-text-subtle: #71717a;
    --kw-link: #60a5fa;
    --kw-link-hover: #3b82f6;
    --kw-primary-button-bg: #2563eb;
    --kw-primary-button-bg-hover: #1d4ed8;
    --kw-primary-button-text: #ffffff;
    --kw-focus: rgb(96 165 250 / 0.2);
    --kw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.15);
    --kw-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.25), 0 4px 6px -4px rgb(0 0 0 / 0.2);
    color-scheme: dark;
  }
}

/* ============================================
   Landscape background (same idea as login)
   Injected by keywind-account.js as .kw-landscape
   ============================================ */

.kw-landscape {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #c7d2fe 0%,
    #e0e7ff 32%,
    #f0f4f8 68%,
    #f8fafc 100%
  );
}

.kw-landscape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.kw-landscape .sun-glow {
  fill: #facc15;
  opacity: 0.18;
}

.kw-landscape .sun {
  fill: #fef08c;
  opacity: 0.55;
}

.kw-landscape .cloud {
  fill: #f8fafc;
  opacity: 0.65;
  animation: kw-cloud-drift linear infinite;
}

.kw-landscape .cloud-slow {
  animation-duration: 92s;
}

.kw-landscape .cloud-medium {
  animation-duration: 64s;
}

.kw-landscape .cloud-fast {
  animation-duration: 48s;
}

.kw-landscape .hill-far {
  fill: #64748b;
  opacity: 0.32;
}

.kw-landscape .hill-mid {
  fill: #475569;
  opacity: 0.42;
}

.kw-landscape .hill-front {
  fill: #334155;
  opacity: 0.55;
}

.kw-landscape .mist {
  fill: #f8fafc;
  opacity: 0.35;
}

@media (prefers-color-scheme: dark) {
  .kw-landscape {
    background: linear-gradient(
      180deg,
      #0f172a 0%,
      #1e293b 35%,
      #1e293b 70%,
      #0f172a 100%
    );
  }

  .kw-landscape .sun-glow {
    fill: #854d0e;
    opacity: 0.08;
  }

  .kw-landscape .sun {
    fill: #fde047;
    opacity: 0.2;
  }

  .kw-landscape .cloud {
    fill: #64748b;
    opacity: 0.12;
  }

  .kw-landscape .hill-far {
    fill: #475569;
    opacity: 0.38;
  }

  .kw-landscape .hill-mid {
    fill: #334155;
    opacity: 0.48;
  }

  .kw-landscape .hill-front {
    fill: #1e293b;
    opacity: 0.65;
  }

  .kw-landscape .mist {
    fill: #0f172a;
    opacity: 0.25;
  }
}

@keyframes kw-cloud-drift {
  from {
    transform: translateX(-260px);
  }
  to {
    transform: translateX(1520px);
  }
}

/* ============================================
   Base page – transparent over landscape
   ============================================ */

html,
body {
  min-height: 100%;
  background: transparent !important;
  color: var(--kw-text);
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

#app,
#main_react_container,
.pf-v5-c-page,
.pf-c-page {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background: transparent !important;
  color: var(--kw-text);
}

a {
  color: var(--kw-link);
}

a:hover {
  color: var(--kw-link-hover);
}

/* Loading screen while SPA boots */
.keycloak__loading-container {
  background: transparent !important;
  color: var(--kw-text) !important;
}

/* ============================================
   De-brand Keycloak logos / banners
   ============================================ */

.pf-c-brand img,
.pf-v5-c-brand img,
.brand img,
.keycloak__brand img,
img[alt*="keycloak" i],
img[title*="keycloak" i],
img[src*="keycloak" i],
svg[aria-label*="keycloak" i] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.pf-c-brand,
.pf-v5-c-brand,
.brand,
.keycloak__brand,
.pf-v5-c-masthead__brand,
.pf-v5-c-masthead .pf-v5-c-brand,
.pf-v5-c-masthead .pf-v5-c-masthead-brand,
.pf-c-page__header-brand,
.pf-v5-c-page__header-brand {
  background-image: none !important;
  display: none !important;
}

/* ============================================
   Masthead
   ============================================ */

.pf-v5-c-masthead,
.pf-c-page__header,
.pf-v5-c-page__header {
  background: color-mix(in srgb, var(--kw-surface) 88%, transparent) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--kw-border) !important;
  box-shadow: none !important;
  min-height: 3rem;
}

.pf-v5-c-masthead .pf-v5-c-toolbar__group:first-of-type,
.pf-v5-c-masthead .pf-v5-c-toolbar__item:first-of-type {
  display: none !important;
  width: 0;
  min-width: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.pf-v5-c-masthead .pf-v5-c-toolbar,
.pf-c-page__header-tools,
.pf-v5-c-page__header-tools {
  min-height: 3rem;
}

/* Push user menu to the right */
.pf-v5-c-masthead .pf-v5-c-toolbar__content-section,
.pf-v5-c-masthead .pf-v5-c-toolbar__group:last-of-type,
.pf-v5-c-masthead .pf-v5-c-toolbar__item:last-of-type {
  display: flex;
  align-items: center;
  margin-left: auto !important;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle,
.pf-v5-c-masthead .pf-v5-c-menu-toggle,
.pf-v5-c-masthead .pf-v5-c-toolbar__group:last-of-type .pf-v5-c-button,
.pf-v5-c-masthead .pf-v5-c-toolbar__item:last-of-type .pf-v5-c-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.2rem 0.75rem 0.2rem 0.35rem !important;
  border-radius: 9999px !important;
  background: var(--kw-surface) !important;
  color: var(--kw-text) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  line-height: 1.1;
  min-height: 2rem;
  border: 1px solid var(--kw-border) !important;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04) !important;
  transition: background-color 0.12s ease, border-color 0.12s ease, transform 0.05s ease;
  cursor: pointer;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle:hover,
.pf-v5-c-masthead .pf-v5-c-menu-toggle:hover,
.pf-v5-c-masthead .pf-v5-c-toolbar__group:last-of-type .pf-v5-c-button:hover,
.pf-v5-c-masthead .pf-v5-c-toolbar__item:last-of-type .pf-v5-c-button:hover {
  background-color: var(--kw-surface-muted) !important;
  border-color: var(--kw-primary-500) !important;
  transform: translateY(-0.5px);
}

.pf-v5-c-masthead img,
.pf-v5-c-masthead .pf-v5-c-avatar,
.pf-v5-c-masthead [class*="avatar"],
.pf-v5-c-masthead .pf-c-avatar {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  border-radius: 9999px !important;
  object-fit: cover !important;
  border: 1px solid var(--kw-border-strong) !important;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
  flex-shrink: 0;
  background-color: var(--kw-surface-muted);
  display: inline-block;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle span,
.pf-v5-c-masthead .pf-v5-c-menu-toggle span,
.pf-v5-c-masthead .pf-v5-c-toolbar__group:last-of-type span:not([class*="icon"]):not([class*="caret"]),
.pf-v5-c-masthead .pf-v5-c-toolbar__item:last-of-type span {
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: var(--kw-text) !important;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle:hover span,
.pf-v5-c-masthead .pf-v5-c-menu-toggle:hover span,
.pf-v5-c-masthead .pf-v5-c-toolbar__group:last-of-type:hover span:not([class*="icon"]):not([class*="caret"]),
.pf-v5-c-masthead .pf-v5-c-toolbar__item:last-of-type:hover span {
  color: var(--kw-primary-600) !important;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle-icon,
.pf-v5-c-masthead .pf-v5-c-menu-toggle__toggle-icon,
.pf-v5-c-masthead [class*="caret"],
.pf-v5-c-masthead [class*="toggle-icon"] {
  display: none !important;
}

.pf-v5-c-masthead .pf-v5-c-dropdown__toggle:focus-visible,
.pf-v5-c-masthead .pf-v5-c-menu-toggle:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px var(--kw-focus) !important;
}

.pf-v5-c-masthead .kw-user-initials {
  flex-shrink: 0;
  font-family: inherit;
  user-select: none;
}

/* ============================================
   Sidebar navigation
   ============================================ */

.pf-c-page__sidebar,
.pf-c-page__sidebar-body,
.pf-v5-c-page__sidebar,
.pf-v5-c-page__sidebar-body {
  background: color-mix(in srgb, var(--kw-surface) 90%, transparent) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid var(--kw-border) !important;
  box-shadow: none !important;
}

.pf-c-nav {
  --pf-c-nav__link--Color: var(--kw-text-muted);
  --pf-c-nav__link--hover--Color: var(--kw-text);
  --pf-c-nav__link--m-current--Color: var(--kw-primary-600);
  --pf-c-nav__link--m-current--BackgroundColor: var(--kw-primary-50);
}

.pf-v5-c-nav {
  --pf-v5-c-nav__link--Color: var(--kw-text-muted);
  --pf-v5-c-nav__link--hover--Color: var(--kw-text);
  --pf-v5-c-nav__link--m-current--Color: var(--kw-primary-600);
  --pf-v5-c-nav__link--m-current--BackgroundColor: var(--kw-primary-50);
}

.pf-c-nav__link,
.pf-v5-c-nav__link {
  border-radius: 0.75rem !important;
  margin: 0.125rem 0.75rem !important;
  font-weight: 500 !important;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.pf-v5-c-nav__link:hover,
.pf-c-nav__link:hover {
  background: var(--kw-surface-muted) !important;
  color: var(--kw-text) !important;
}

.pf-v5-c-nav__link.pf-m-current,
.pf-v5-c-nav__link[aria-current="page"],
.pf-c-nav__link.pf-m-current,
.pf-c-nav__link[aria-current="page"] {
  background-color: var(--kw-surface) !important;
  color: var(--kw-text) !important;
  font-weight: 600 !important;
  border: 1px solid var(--kw-border) !important;
  box-shadow: var(--kw-shadow);
}

/* Hide PF left-bar accent (we use card-style active state) */
.pf-c-nav__link::before,
.pf-c-nav__link::after,
.pf-v5-c-nav__link::before,
.pf-v5-c-nav__link::after {
  display: none !important;
}

/* ============================================
   Main content
   ============================================ */

.pf-c-page__main,
.pf-v5-c-page__main {
  background: transparent !important;
}

.pf-c-page__main-section,
.pf-v5-c-page__main-section,
.pf-c-page__main-section.pf-m-light,
.pf-v5-c-page__main-section.pf-m-light,
.pf-c-page__main-breadcrumb,
.pf-v5-c-page__main-breadcrumb {
  background: transparent !important;
}

.pf-c-content,
.pf-c-content p,
.pf-c-description-list,
.pf-c-description-list__text,
.pf-c-description-list__description,
.pf-c-description-list__term,
.pf-c-helper-text,
.pf-v5-c-content,
.pf-v5-c-content p,
.pf-v5-c-description-list,
.pf-v5-c-description-list__text,
.pf-v5-c-description-list__description,
.pf-v5-c-description-list__term,
.pf-v5-c-helper-text {
  color: var(--kw-text-muted);
}

.pf-c-content h1,
.pf-c-title.pf-m-2xl,
.pf-c-title.pf-m-xl,
.pf-v5-c-content h1,
.pf-v5-c-title.pf-m-2xl,
.pf-v5-c-title.pf-m-xl,
.pf-v5-c-content h2,
.pf-c-content h2 {
  color: var(--kw-text) !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
}

/* ============================================
   Cards / panels (match FreeMarker section cards)
   ============================================ */

.pf-c-card,
.pf-v5-c-card,
.pf-c-page__main-section .pf-c-wizard,
.pf-v5-c-page__main-section .pf-v5-c-wizard,
.pf-c-modal-box,
.pf-v5-c-modal-box,
.pf-v5-c-drawer__panel,
.pf-c-drawer__panel {
  background: color-mix(in srgb, var(--kw-surface) 94%, transparent) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--kw-border) !important;
  border-radius: var(--kw-radius-lg) !important;
  box-shadow: var(--kw-shadow-lg) !important;
}

.pf-c-card__title,
.pf-c-card__body,
.pf-c-card__footer,
.pf-v5-c-card__title,
.pf-v5-c-card__body,
.pf-v5-c-card__footer,
.pf-c-card__header,
.pf-v5-c-card__header {
  background: transparent !important;
  color: var(--kw-text);
}

/* Data lists / tables */
.pf-c-data-list,
.pf-v5-c-data-list,
.pf-c-table,
.pf-v5-c-table {
  background: transparent !important;
  border-color: var(--kw-border) !important;
}

.pf-c-data-list__item,
.pf-v5-c-data-list__item,
.pf-c-table tr,
.pf-v5-c-table tr {
  border-color: var(--kw-border) !important;
  background: transparent !important;
}

.pf-c-data-list__item-row,
.pf-v5-c-data-list__item-row {
  background: transparent !important;
}

/* ============================================
   Forms
   ============================================ */

.pf-c-form-control,
.pf-v5-c-form-control,
.pf-c-text-input-group,
.pf-v5-c-text-input-group,
input.pf-c-form-control,
input.pf-v5-c-form-control,
textarea.pf-c-form-control,
textarea.pf-v5-c-form-control,
select.pf-c-form-control,
select.pf-v5-c-form-control {
  border-radius: 1rem !important;
  border-color: var(--kw-border) !important;
  background: var(--kw-surface) !important;
  color: var(--kw-text) !important;
  box-shadow: none !important;
  min-height: 2.75rem;
}

.pf-c-form-control:focus,
.pf-v5-c-form-control:focus,
input.pf-c-form-control:focus,
input.pf-v5-c-form-control:focus,
textarea.pf-c-form-control:focus,
textarea.pf-v5-c-form-control:focus {
  border-color: var(--kw-primary-500) !important;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--kw-primary-500) 30%, transparent) !important;
  outline: none !important;
}

.pf-c-form__label,
.pf-v5-c-form__label,
.pf-c-form__label-text,
.pf-v5-c-form__label-text {
  color: var(--kw-text) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
}

/* ============================================
   Buttons
   ============================================ */

.pf-c-button,
.pf-v5-c-button {
  border-radius: 1rem !important;
  font-weight: 500 !important;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pf-c-button.pf-m-primary,
.pf-v5-c-button.pf-m-primary {
  background: var(--kw-primary-button-bg) !important;
  color: var(--kw-primary-button-text) !important;
  border-color: transparent !important;
}

.pf-c-button.pf-m-primary:hover,
.pf-c-button.pf-m-primary:focus,
.pf-v5-c-button.pf-m-primary:hover,
.pf-v5-c-button.pf-m-primary:focus {
  background: var(--kw-primary-button-bg-hover) !important;
  color: var(--kw-primary-button-text) !important;
}

.pf-c-button.pf-m-secondary,
.pf-c-button.pf-m-control,
.pf-v5-c-button.pf-m-secondary,
.pf-v5-c-button.pf-m-control {
  background: var(--kw-surface) !important;
  border-color: var(--kw-border) !important;
  color: var(--kw-text) !important;
}

.pf-c-button.pf-m-secondary:hover,
.pf-c-button.pf-m-control:hover,
.pf-v5-c-button.pf-m-secondary:hover,
.pf-v5-c-button.pf-m-control:hover {
  background: var(--kw-surface-muted) !important;
  border-color: var(--kw-border-strong) !important;
}

.pf-c-button.pf-m-link,
.pf-v5-c-button.pf-m-link,
.pf-c-button.pf-m-plain,
.pf-v5-c-button.pf-m-plain {
  color: var(--kw-text-muted) !important;
}

.pf-c-button.pf-m-link:hover,
.pf-v5-c-button.pf-m-link:hover,
.pf-c-button.pf-m-plain:hover,
.pf-v5-c-button.pf-m-plain:hover {
  color: var(--kw-text) !important;
  background: var(--kw-surface-muted) !important;
}

.pf-c-button.pf-m-danger,
.pf-v5-c-button.pf-m-danger {
  background: #dc2626 !important;
  color: #fff !important;
}

/* ============================================
   Alerts / labels / badges
   ============================================ */

.pf-c-alert,
.pf-v5-c-alert {
  border-radius: 1rem !important;
  border: 1px solid var(--kw-border) !important;
}

.pf-c-label,
.pf-v5-c-label,
.pf-c-badge,
.pf-v5-c-badge {
  border-radius: 0.5rem !important;
}

/* ============================================
   Dropdowns / menus
   ============================================ */

.pf-c-dropdown__menu,
.pf-v5-c-dropdown__menu,
.pf-c-menu,
.pf-v5-c-menu,
.pf-v5-c-menu__content {
  background: var(--kw-surface) !important;
  border: 1px solid var(--kw-border) !important;
  border-radius: 1rem !important;
  box-shadow: var(--kw-shadow-lg) !important;
  color: var(--kw-text) !important;
}

.pf-c-dropdown__menu-item,
.pf-v5-c-dropdown__menu-item,
.pf-c-menu__item,
.pf-v5-c-menu__item {
  color: var(--kw-text) !important;
  border-radius: 0.5rem;
}

.pf-c-dropdown__menu-item:hover,
.pf-v5-c-dropdown__menu-item:hover,
.pf-c-menu__item:hover,
.pf-v5-c-menu__item:hover {
  background: var(--kw-surface-muted) !important;
}

/* ============================================
   Tabs / empty states / misc
   ============================================ */

.pf-c-tabs__link,
.pf-v5-c-tabs__link {
  color: var(--kw-text-muted) !important;
}

.pf-c-tabs__item.pf-m-current .pf-c-tabs__link,
.pf-v5-c-tabs__item.pf-m-current .pf-v5-c-tabs__link,
.pf-v5-c-tabs__link.pf-m-current {
  color: var(--kw-primary-600) !important;
}

.pf-c-empty-state,
.pf-v5-c-empty-state {
  color: var(--kw-text-muted);
}

.pf-c-spinner,
.pf-v5-c-spinner {
  --pf-c-spinner--Color: var(--kw-primary-600);
  --pf-v5-c-spinner--Color: var(--kw-primary-600);
}

/* Page section max-width breathing room on large screens */
.pf-v5-c-page__main-section > .pf-v5-l-grid,
.pf-v5-c-page__main-section > .pf-v5-c-gallery,
.pf-c-page__main-section > .pf-l-grid {
  max-width: 56rem;
}

/* Expandable sections */
.pf-c-expandable-section__toggle,
.pf-v5-c-expandable-section__toggle {
  color: var(--kw-primary-600) !important;
}

/* Chip / token */
.pf-c-chip,
.pf-v5-c-chip {
  border-radius: 0.5rem !important;
  background: var(--kw-surface-muted) !important;
  border-color: var(--kw-border) !important;
  color: var(--kw-text-muted) !important;
}
