/* Зеленоватый оттенок светлой темы. Тёмную тему не трогаем. */
[data-bs-theme="light"] {
  --bs-body-bg: #f2faf5;
  --bs-app-bg-color: #f2faf5;
  --bs-app-blank-bg-color: #f2faf5;
  --bs-app-header-sticky-bg-color: #f2faf5;
  --bs-app-sidebar-base-bg-color: #f2faf5;
  --bs-secondary-bg: #eaf5ee;
  --bs-tertiary-bg: #f2faf5;
}

/* Зелёные надписи и ссылки: темнее для читаемости на зеленоватом фоне.
   Кнопки (.btn-primary) не затрагиваются. */
[data-bs-theme="light"] {
  --bs-link-color: #0b7a34;
  --bs-link-color-rgb: 11, 122, 52;
  --bs-link-hover-color: #075e27;
  --bs-link-hover-color-rgb: 7, 94, 39;
  --bs-text-primary: #0b7a34;
}
[data-bs-theme="light"] .link-primary,
[data-bs-theme="light"] .text-primary {
  color: #0b7a34 !important;
}
[data-bs-theme="light"] .link-primary:hover,
[data-bs-theme="light"] .link-primary:focus,
[data-bs-theme="light"] .text-hover-primary:hover,
[data-bs-theme="light"] a.text-primary:hover {
  color: #075e27 !important;
}
