/* LevelUp V99 — przywrócenie watermarku + identyczna przezroczystość wszystkich wierszy.
   V98 dał pełne #101014 na każdy .clientRow, przez co logo pod tabelą zostało całkowicie zasłonięte.
   Teraz wracamy do bazowej warstwy rgba i tylko wymuszamy, aby Nowy klient miał DOKŁADNIE to samo tło. */

/* Watermark karty klientów pozostaje widoczny i nieruchomy. */
html body #root .dashboardView .clientPanel::before {
  display: block !important;
  content: "" !important;
  opacity: 0.065 !important;
}

/* Standardowa przezroczystość każdego rekordu — taka jak przed V98. */
html body #root .dashboardView .clientPanel .clientTable .tableBody .clientRow {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(16, 16, 20, 0.72) !important;
  background-color: rgba(16, 16, 20, 0.72) !important;
  background-image: none !important;
}

html body #root .dashboardView .clientPanel .clientTable .tableBody .clientRow:hover {
  background: rgba(20, 20, 25, 0.90) !important;
  background-color: rgba(20, 20, 25, 0.90) !important;
  background-image: none !important;
}

/* Nowy klient: dokładnie ta sama przezroczystość co każdy inny rekord.
   Nie inherit, nie pełny kolor i bez starego złotego gradientu. */
html body #root .dashboardView .clientRow.onboardingNewClientV86,
html body #root .dashboardView .clientRow.luNewClientStateV87,
html body #root .dashboardView .clientRow.luNewClientStateV88,
html body #root .dashboardView .clientRow.luNewClientV89 {
  opacity: 1 !important;
  background: rgba(16, 16, 20, 0.72) !important;
  background-color: rgba(16, 16, 20, 0.72) !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body #root .dashboardView .clientRow.onboardingNewClientV86:hover,
html body #root .dashboardView .clientRow.luNewClientStateV87:hover,
html body #root .dashboardView .clientRow.luNewClientStateV88:hover,
html body #root .dashboardView .clientRow.luNewClientV89:hover {
  background: rgba(20, 20, 25, 0.90) !important;
  background-color: rgba(20, 20, 25, 0.90) !important;
}

/* Wyłączamy tylko dekoracyjną pionową kreskę/gradient starego onboardingu. */
html body #root .dashboardView .clientRow.onboardingNewClientV86::before,
html body #root .dashboardView .clientRow.luNewClientStateV87::before,
html body #root .dashboardView .clientRow.luNewClientStateV88::before,
html body #root .dashboardView .clientRow.luNewClientV89::before {
  content: none !important;
  display: none !important;
}
