.title-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
}
img {
    width: 60px;
    height: 60px;
}
table {
    text-align: center;
    border-collapse: separate;
    border-spacing: 0;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        "Noto Sans",
        "Liberation Sans",
        Arial,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}
td,
th {
    border: 0.008em solid #a39e9e;
    padding: 0.5rem;
}
.thead-table {
    position: sticky;
    top: 0;
    z-index: 25;
    background-color: #eeeded;
}
.sticky-left {
    position: sticky;
    left: 0;
    background-color: #ffffff;
    z-index: 1;
}
._122025 {
    background-color: #4de938;
}
.nav-menu {
    margin-left: 20px;
    text-decoration: none;
    color: black;
}
/* Мобильные стили */
@media (max-width: 768px) {
    .title-container {
        justify-content: center;
        text-align: center;
    }

    h1 {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    p {
        font-size: 1rem;
        text-align: center;
        margin: 10px;
        font-weight: bold;
    }

    table {
        font-size: 16px;
    }

    td,
    th {
        padding: 8px 4px;
        min-width: 35px;
        font-size: 14px;
    }

    td:first-child,
    th:first-child {
        min-width: 55px;
        font-weight: bold;
    }

    /* Делаем галочки более заметными */
    td:not(:first-child) {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.95rem;
    }

    table {
        font-size: 14px;
    }

    td,
    th {
        padding: 6px 3px;
        min-width: 32px;
    }

    td:first-child,
    th:first-child {
        min-width: 50px;
    }

    /* Увеличиваем только ячейки с данными */
    td:not(:first-child) {
        font-size: 15px;
        font-weight: 500;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    td,
    th {
        padding: 5px 2px;
        min-width: 28px;
    }

    td:first-child,
    th:first-child {
        min-width: 45px;
    }

    td:not(:first-child) {
        font-size: 14px;
    }
}
/* Кнопка "Наверх" */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

#backToTop:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

#backToTop svg {
    width: 20px;
    height: 20px;
}
