/**
 * Custom Fixes - Доповнення до основних стилів
 * ==============================================
 * Мінімальні зміни для покращення вигляду без зміни робочого коду
 */

/* ============================================
   1. ШИРША ТАБЛИЦЯ - збільшення max-width контейнера
   ============================================ */

.container {
  max-width: 1400px !important;
}

/* ============================================
   2. ОДНАКОВИЙ ФОН ДЛЯ ВСІХ ГРУП В ТАБЛИЦІ
   ============================================ */

/* Прибираємо чергування світлого/темного фону */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: transparent !important;
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: transparent !important;
}

/* Світла тема - білий фон для всіх рядків */
[data-theme="light"] .table tbody tr {
  background-color: var(--white, #ffffff) !important;
}

/* Темна тема - темний фон для всіх рядків */
[data-theme="dark"] .table tbody tr {
  background-color: var(--white, #1f2937) !important;
}

/* ============================================
   3. ТЕМНА NAVBAR ДЛЯ ТЕМНОЇ ТЕМИ
   ============================================ */

/* Темна тема - navbar темний */
[data-theme="dark"] .navbar {
  background-color: #1f2937 !important;
  border-bottom-color: #374151 !important;
}

[data-theme="dark"] .navbar .navbar-brand,
[data-theme="dark"] .navbar .nav-link {
  color: #ffffff !important;
}

[data-theme="dark"] .navbar .nav-link:hover {
  color: #60a5fa !important;
}

[data-theme="dark"] .navbar .nav-link.active {
  color: #60a5fa !important;
}

