/* ============================================== */
/* БАЗОВЫЕ СТИЛИ (СВЕТЛАЯ ТЕМА ПО УМОЛЧАНИЮ) */
/* ============================================== */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0 15px;
    text-align: center;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff);
    min-height: 100vh;
    color: #212529;
}

h1 {
    font-size: 2.5em;
    color: #212529; /* Цвет текста светлой темы */
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

h2 {
    font-size: 1.8em;
    color: #343a40; /* Цвет текста светлой темы */
    margin-top: 20px;
    transition: color 0.3s ease;
}

p {
    font-size: 1.1em;
    color: #495057; /* Цвет текста светлой темы */
    margin: 10px 0;
    transition: color 0.3s ease;
}

.version-table {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #ffffff; /* Фон таблицы светлой темы */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

th, td {
    border: 1px solid #dee2e6; /* Граница таблицы светлой темы */
    padding: 12px;
    text-align: center;
    transition: border-color 0.3s ease;
}

th {
    background-color: #f8f9fa; /* Фон заголовков таблицы светлой темы */
    font-weight: bold;
    color: #212529; /* Цвет текста заголовков светлой темы */
    transition: background-color 0.3s ease, color 0.3s ease;
}

td {
    color: #495057; /* Цвет текста ячеек светлой темы */
    transition: color 0.3s ease;
}

a {
    color: #0056b3; /* Цвет ссылок светлой темы */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003580;
    text-decoration: underline;
}

.update-info {
    text-align: left;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9em;
    color: #495057; /* Цвет текста светлой темы */
    transition: color 0.3s ease;
}

.language-switcher {
    margin: 20px auto;
}

.language-switcher a,
.language-switcher .btn,
.theme-switcher .btn { /* Добавил .theme-switcher .btn сюда */
    position: relative;
    padding: 8px 16px;
    margin: 0 5px;
    border: none;
    background-color: #007bff; /* Фон кнопок светлой темы */
    color: #ffffff; /* Цвет текста кнопок светлой темы */
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switcher a:hover,
.theme-switcher .btn:hover { /* Добавил .theme-switcher .btn:hover сюда */
    background-color: #0056b3;
}

.language-switcher .btn.disabled {
    background-color: #6c757d;
    opacity: 0.6;
    cursor: default;
}

.language-switcher img {
    height: 1em;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.language-banner {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f8f9fa; /* Фон баннера светлой темы */
    border: 1px solid #dee2e6; /* Граница баннера светлой темы */
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.language-banner p {
    margin: 0;
    font-size: 0.95em;
    color: #212529; /* Цвет текста баннера светлой темы */
    transition: color 0.3s ease;
}

.language-banner button {
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-banner #language-banner-switch {
    background-color: #007bff; /* Фон кнопки переключения баннера светлой темы */
    color: white;
}

.language-banner #language-banner-switch:hover {
    background-color: #0056b3;
}

.language-banner #language-banner-close {
    background-color: #dc3545; /* Фон кнопки закрытия баннера светлой темы */
    color: white;
}

.language-banner #language-banner-close:hover {
    background-color: #c82333;
}

.particles {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #007bff; /* Цвет частиц светлой темы */
    border-radius: 50%;
    animation: move 2s linear forwards;
    transition: background-color 0.3s ease;
}

@keyframes move {
    to {
        transform: translate(var(--dx), var(--dy));
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .version-table {
        width: 100%; /* Оставляем 100%, отступы будут от body */
        font-size: 0.9em;
    }
    th, td {
        padding: 8px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .update-info {
        width: 100%; /* Оставляем 100%, отступы будут от body */
        font-size: 0.8em;
    }
    .language-banner {
        width: 90%;
        flex-direction: column;
        text-align: center;
    }
    .language-switcher {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Общий серый цвет для всех архивных строк */
.archived-row {
    background-color: #f0f0f0; /* Фон архивных строк светлой темы */
    color: #6c757d; /* Цвет текста архивных строк светлой темы */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Серые и кликабельные ссылки для старых версий */
.archived-row.clickable a {
    color: #6c757d;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.archived-row.clickable a:hover {
    color: #495057;
    text-decoration: underline;
}

/* Серые и не кликабельные ссылки для архивной версии */
.archived-row.disabled a {
    color: #888888;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    opacity: 0.7;
    transition: color 0.3s ease;
}

.theme-switcher {
    text-align: center;
    margin-bottom: 20px;
}


/* ============================================== */
/* СТИЛИ ТЕМНОЙ ТЕМЫ (ПЕРЕОПРЕДЕЛЕНИЕ) */
/* Применяются, если html[data-theme="dark"] установлен */
/* ============================================== */
html[data-theme="dark"] body {
    background: linear-gradient(to bottom, #1a1a2e, #0f0f1d);
    color: #e0e0e0;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2 {
    color: #f0f0f0;
}

html[data-theme="dark"] p {
    color: #c0c0c0;
}

html[data-theme="dark"] .version-table {
    background-color: #2b2b3b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] th,
html[data-theme="dark"] td {
    border: 1px solid #4a4a5a;
}

html[data-theme="dark"] th {
    background-color: #3a3a4a;
    color: #f0f0f0;
}

html[data-theme="dark"] td {
    color: #c0c0c0;
}

html[data-theme="dark"] a {
    color: #88c0d0;
}

html[data-theme="dark"] a:hover {
    color: #66a0b0;
}

html[data-theme="dark"] .update-info {
    color: #c0c0c0;
}

html[data-theme="dark"] .language-switcher a,
html[data-theme="dark"] .language-switcher .btn,
html[data-theme="dark"] .theme-switcher .btn {
    background-color: #4c668b;
    color: #ffffff;
}

html[data-theme="dark"] .language-switcher a:hover,
html[data-theme="dark"] .theme-switcher .btn:hover {
    background-color: #3b5070;
}

html[data-theme="dark"] .language-switcher .btn.disabled {
    background-color: #4a4a5a;
}

html[data-theme="dark"] .language-banner {
    background-color: #2b2b3b;
    border: 1px solid #4a4a5a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .language-banner p {
    color: #e0e0e0;
}

html[data-theme="dark"] .language-banner #language-banner-switch {
    background-color: #4c668b;
}

html[data-theme="dark"] .language-banner #language-banner-switch:hover {
    background-color: #3b5070;
}

html[data-theme="dark"] .language-banner #language-banner-close {
    background-color: #8b4c4c;
}

html[data-theme="dark"] .language-banner #language-banner-close:hover {
    background-color: #703b3b;
}

html[data-theme="dark"] .particles {
    background-color: #88c0d0;
}

html[data-theme="dark"] .archived-row {
    background-color: #3a3a4a;
    color: #8c8c9a;
}

html[data-theme="dark"] .archived-row.clickable a {
    color: #8c8c9a;
}

html[data-theme="dark"] .archived-row.clickable a:hover {
    color: #a0a0b0;
}

html[data-theme="dark"] .archived-row.disabled a {
    color: #6a6a6a;
}

/* ============================================== */
/* СИСТЕМНАЯ ТЕМНАЯ ТЕМА (ПО УМОЛЧАНИЮ) */
/* Применяется, если prefers-color-scheme: dark И html НЕ имеет data-theme="light" */
/* ============================================== */
@media (prefers-color-scheme: dark) {
    /* Если у html НЕ установлен data-theme="light" (т.е. либо нет атрибута, либо он "dark") */
    html:not([data-theme="light"]) body {
        background: linear-gradient(to bottom, #1a1a2e, #0f0f1d);
        color: #e0e0e0;
    }

    html:not([data-theme="light"]) h1,
    html:not([data-theme="light"]) h2 {
        color: #f0f0f0;
    }

    html:not([data-theme="light"]) p {
        color: #c0c0c0;
    }

    html:not([data-theme="light"]) .version-table {
        background-color: #2b2b3b;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    html:not([data-theme="light"]) th,
    html:not([data-theme="light"]) td {
        border: 1px solid #4a4a5a;
    }

    html:not([data-theme="light"]) th {
        background-color: #3a3a4a;
        color: #f0f0f0;
    }

    html:not([data-theme="light"]) td {
        color: #c0c0c0;
    }

    html:not([data-theme="light"]) a {
        color: #88c0d0;
    }

    html:not([data-theme="light"]) a:hover {
        color: #66a0b0;
    }

    html:not([data-theme="light"]) .update-info {
        color: #c0c0c0;
    }

    html:not([data-theme="light"]) .language-switcher a,
    html:not([data-theme="light"]) .language-switcher .btn,
    html:not([data-theme="light"]) .theme-switcher .btn {
        background-color: #4c668b;
        color: #ffffff;
    }

    html:not([data-theme="light"]) .language-switcher a:hover,
    html:not([data-theme="light"]) .theme-switcher .btn:hover {
        background-color: #3b5070;
    }

    html:not([data-theme="light"]) .language-switcher .btn.disabled {
        background-color: #4a4a5a;
    }

    html:not([data-theme="light"]) .language-banner {
        background-color: #2b2b3b;
        border: 1px solid #4a4a5a;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    html:not([data-theme="light"]) .language-banner p {
        color: #e0e0e0;
    }

    html:not([data-theme="light"]) .language-banner #language-banner-switch {
        background-color: #4c668b;
    }

    html:not([data-theme="light"]) .language-banner #language-banner-switch:hover {
        background-color: #3b5070;
    }

    html:not([data-theme="light"]) .language-banner #language-banner-close {
        background-color: #8b4c4c;
    }

    html:not([data-theme="light"]) .language-banner #language-banner-close:hover {
        background-color: #703b3b;
    }

    html:not([data-theme="light"]) .particles {
        background-color: #88c0d0;
    }

    html:not([data-theme="light"]) .archived-row {
        background-color: #3a3a4a;
        color: #8c8c9a;
    }

    html:not([data-theme="light"]) .archived-row.clickable a {
        color: #8c8c9a;
    }

    html:not([data-theme="light"]) .archived-row.clickable a:hover {
        color: #a0a0b0;
    }

    html:not([data-theme="light"]) .archived-row.disabled a {
        color: #6a6a6a;
    }
}
.tooltip-trigger {
  position: relative;
  cursor: pointer;
  border-bottom: 1px dotted #ccc;
}
.custom-tooltip {
    position: absolute; /* Позиционируем относительно родительской <td> */
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: normal;
    font-size: 14px;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}