/* Темная тема для приложения */

/* Splash Screen в темной теме */
[data-theme="dark"] .splash-screen {
    background: var(--bg-body);
}

[data-theme="dark"] .splash-title {
    color: var(--text-primary);
}

[data-theme="dark"] .splash-logo svg.pooling-logo {
    fill: currentColor;
}

/* Навигация в темной теме */
[data-theme="dark"] .nav-link,
[data-theme="dark"] .nav-link-mobile {
    color: var(--text-primary, #e0e0e0);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link-mobile:hover {
    color: var(--primary-color, #4a9eff);
}

[data-theme="dark"] .nav-link.active,
[data-theme="dark"] .nav-link-mobile.active {
    color: var(--primary-color, #4a9eff);
}

[data-theme="dark"] .nav-divider,
[data-theme="dark"] .nav-divider-mobile {
    background-color: #555;
}


