/* Custom theme styles */

/* Светлая тема */
:root {
    --body-background: #ffffff !important; /* Белый фон всей страницы */
    --body-text-color: #222222 !important; /* Тёмный текст */
    --primary-background: #73b5db !important; /* Синий акцентный цвет кнопок */
    --primary-text-color: #ffffff !important; /* Белый текст на кнопках */
    --default-link: #000000 !important; /* Цвет ссылок на сайте */
    --primary-button-bg-color: #73b5db !important;
    --default-text-color: #73b5db !important;
}

/* Тёмная тема */
.dark {
    --body-background: #121212 !important; /* Почти чёрный фон всей страницы */
    --body-text-color: #f5f5f5 !important; /* Светло-серый текст */
    --primary-background: #5495bb !important; /* Синий акцентный цвет кнопок */
    --primary-text-color: #ffffff !important; /* Белый текст на кнопках */
    --default-link: #ffffff !important; /* Цвет ссылок на сайте */
}