/* Pomocné styly pro správné fungování tmavého režimu s Tailwindem */

html.dark body {
  /* Vynucení Tailwind barev pro dark mode */
  background-color: #111827 !important; /* odpovídá bg-gray-900 */
  color: #f3f4f6 !important; /* odpovídá text-gray-100 */
}

html.dark .bg-white {
  background-color: #1f2937 !important; /* odpovídá bg-gray-800 */
}

html.dark .text-gray-800 {
  color: #f3f4f6 !important; /* odpovídá text-gray-100 */
}

html.dark .border-indigo-500 {
  border-color: #6366f1 !important;
}

html.dark .shadow {
  box-shadow: 0 1px 3px 0 #0003, 0 1px 2px 0 #0000001a !important;
}

html.dark .bg-gray-100 {
  background-color: #374151 !important;
}

html.dark .text-gray-600 {
  color: #d1d5db !important;
}

html.dark .border-gray-300 {
  border-color: #374151 !important;
}

html.dark .border-gray-700 {
  border-color: #374151 !important;
}

/* Přepínač tmavého režimu - barva kolečka podle režimu */
#flexSwitchChecked:after {
  background-color: var(--switch-knob-bg, #111) !important;
}

/* Přidej další selektory podle potřeby */
