:root {
    --color01: #4B76AB;
    --color02: #E8C522;
    --color03: #2B2B2B;
    --color04: #3B3B3B;
    --color05: #5A5B53;
    --color06: #333333;
    --color07: #8CC53E;
    --color08: #739BF2;
    --color09: #aaa;
    --color10: #f00;
    --color11: #E9530D;
    --color12: #C53E48;
    --color13: #f8f9fa;
    --scrollbarBg: #cecece;
    --scrollbarThumb: #E9530D;
    --scrollbarThumb2: #ddd;
    --scrollbarBorder: 2px solid var(--scrollbarBg);
    --scrollbarWidth: 10px;
    --scrollbarHeight: 27px;
}

* {
    box-sizing: border-box;
}

a:link {
    color: var(--color01);
}

a:visited {
    color: var(--color01);
}

a:active {
    color: var(--color01);
}

a:hover {
    color: var(--color10);
}

a.underline {
    text-decoration: underline;
}

a.not-underline {
    text-decoration: none;
}

a.underline:hover {
    text-decoration: none;
}

table, table td, table th, a, li {
    padding: 0px;
    border-spacing: 0px;
}

div, td, th, p, ol, ul, input, textarea {
    box-sizing: border-box;
}

b {
    font-weight: 600 !important;
}

input, textarea, button {
    outline: none;
}

label[data-rel=required]::before {
    position: relative;
    color: red;
    content: "* ";
    background: transparent;
}

::-webkit-input-placeholder {
    color: #ccc !important;
}

::-moz-placeholder {
    color: #ccc !important;
}

/* Firefox 19+ */
:-moz-placeholder {
    color: #ccc !important;
}

/* Firefox 18- */
:-ms-input-placeholder {
    color: #ccc !important;
}

.mobile {
    display: none;
}

.unselect {
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.autoselect {
    -moz-user-select: auto;
    -o-user-select: auto;
    -khtml-user-select: auto;
    -webkit-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.svg-invert {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-360 {
    width: 200px;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotation;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotation;
    -o-animation-duration: 5s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(720deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#load {
    width: 100px;
    height: 100px;
    background: url('../images/load.svg') no-repeat 0 0 / 100% 100%;
    z-index: 1000;
    position: fixed;
    margin-left: calc(50% - 50px);
    margin-top: 400px;
    display: none;
    opacity: 0.3;
    /*-webkit-filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1));
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1));*/
}

#shadow-overlay {
    position: absolute;
    z-index: 900;
    box-shadow: 0 0 0 50000px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 50000px rgba(255, 255, 255, 0.4);
    display: none;
}


html {
    height: 100%;
}

body {
    color: var(--color06);
    height: calc(100% - 10px);
    min-height: calc(100% - 10px);
    background: var(--color01) !important;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Стандарт */;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #999 #fff;
}

*::-webkit-scrollbar {
    width: auto;
    height: auto;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbarBg);
    border-radius: var(--scrollbarBorderRadius);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollbarThumb);
    border-radius: var(--scrollbarBorderRadius);
    border: var(--scrollbarBorder);
}

.little-scrollbar {
    scrollbar-width: thin;
    scrollbar-height: thin;
    scrollbar-color: var(--scrollbarThumb) transparent;
}

.little-scrollbar::-webkit-scrollbar {
    width: var(--scrollbarWidth);
    height: var(--scrollbarWidth);
}

.little-scrollbar::-webkit-scrollbar-track {
    border: 4px solid #fff;
    border-radius: 10px;
}

.little-scrollbar::-webkit-scrollbar-thumb {
    border: 0px solid transparent;
    border-radius: 10px;
}

.body-container__green {
    color: var(--color07) !important;
}

.body-container__blue {
    color: var(--color08) !important;
}

.body-container__red {
    color: var(--color12) !important;
}

.body-container__gray {
    color: var(--color09) !important;
}

.container-wrapper {
    min-height: 100%;
    padding-bottom: 10px;
}

.container {
    max-width: 1280px !important;
    background: #fff;
    height: calc(100% - 10px);
    min-height: calc(100vh - 20px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

/*Шапка*/
.header-container {
    height: 100px;
    background: url('../images/top04.webp') no-repeat 50% 50% / cover;
}

.header-container__title-wrapper {
    font-size: 33px;
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer;
    font-family: Monotype Corsiva, Mistral;
    text-shadow: #000 1px 1px 1px, rgba(255, 255, 255, 0.7) 1px 1px 5px;
    top: 40px;
}

.header-container__title {
    color: var(--color02);
    line-height: 19px;
}

.header-container__title span {
    color: #fff;
}

.header-container__subtitle {
    font-size: 21px;
}

/*Шапка*/

/*Меню*/
.menu-container {
    background-color: var(--color03);
    min-height: 25px;
    font-size: 14px;
}

.menu-container__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
}

.menu-container__item {
    flex: 1;
    text-align: center;
    background-color: var(--color04);
    color: #fff;
    padding: 5px 13px;
    border-bottom: 1px solid var(--color05);
    border-right: 1px solid var(--color05);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.menu-container__item--active {
    background-color: #807767;
}

.menu-container__item--active {
    background-color: var(--color03);
}

a.menu-container__link {
    text-decoration: none;
    color: #fff;
    display: block;
}

a.menu-container__link--new {
    color: #ffcc11;
    font-weight: bold;
}

.menu-container__item:hover > a.menu-container__link {
    color: #ff0;
    cursor: pointer;
}

.menu-container__item:hover a.menu-container__link--new {
    color: #ffcc11;
    font-weight: bold;
}

.dropdown {
    background-color: var(--color04);
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid var(--color05);
    border-right: 1px solid var(--color05);
    border-left: 1px solid var(--color05);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
}

.menu-container__item--has-dropdown:hover .dropdown {
    display: block;
}

.dropdown__item {
    padding: 5px;
}

a.dropdown__link {
    text-decoration: none;
    color: #fff;
    display: block;
}

.dropdown__item:hover a.dropdown__link {
    color: #ff0;
    cursor: pointer;
}

.menu-container__lang-switcher {
    margin-right: 10px;
    margin-top: 5px;
    float: right;
    cursor: pointer;
    color: white;
    display: none;
}

/*Меню*/

/*Подвал*/
.footer-container {
    color: #000;
    text-align: right;
    font-size: 12px;
}

/*Подвал*/

/*Меню боковое — серые кнопки со стеклянным эффектом*/
.body-container__aside .nav {
    width: 100%;
}

.body-container__aside .nav__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.body-container__aside .nav__item {
    width: 100%;
    max-width: 100%;
}

.body-container__aside .nav__link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 14px 5px 14px;
    box-sizing: border-box;
    text-decoration: none;
    color: #f0f0f0 !important;
    font-size: 14px;
    font-weight: 400;
    background: linear-gradient(
            135deg,
            rgba(80, 80, 85, 0.75) 0%,
            rgba(55, 55, 60, 0.7) 45%,
            rgba(45, 45, 50, 0.75) 55%,
            rgba(35, 35, 40, 0.8) 100%
    );
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.body-container__aside .nav__link::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    height: 40%;
    background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.05)
    );
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}

.body-container__aside .nav__link:not(.nav__link--active):hover {
    background: linear-gradient(
            135deg,
            rgba(100, 100, 105, 0.85) 0%,
            rgba(70, 70, 75, 0.8) 45%,
            rgba(55, 55, 60, 0.85) 55%,
            rgba(45, 45, 50, 0.9) 100%
    );
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Активное нажатие */
.body-container__aside .nav__link:not(.nav__link--active):active {
    transform: translateY(1px);
    background: linear-gradient(
            135deg,
            rgba(40, 40, 45, 0.85) 0%,
            rgba(50, 50, 55, 0.8) 100%
    );
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.body-container__aside .nav__link--active {
    cursor: default;
    background: linear-gradient(
            135deg,
            rgba(160, 160, 170, 0.85) 0%,
            rgba(130, 130, 140, 0.8) 45%,
            rgba(110, 110, 120, 0.85) 55%,
            rgba(90, 90, 100, 0.9) 100%
    );
    backdrop-filter: blur(4px);
    color: #1a1a1a !important;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.body-container__aside .nav__link-text {
    flex: 1;
    text-align: left;
}

.body-container__aside .nav__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 2px 8px;
    margin-left: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #e0e0e0;
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.body-container__aside .nav__link--active .nav__badge {
    color: #2a2a2a;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.body-container__aside .nav__divider {
    height: 1px;
    margin: 8px 0;
    background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
    );
    backdrop-filter: blur(1px);
}

.body-container {
    background: url("../images/subtop.webp") no-repeat -252px -187px / 550px 597px;
}

.body-container__aside {
    width: 300px;
}

.body-container__main {
    width: calc(100% - 300px);
    font-family: Tahoma;
    font-size: 14px !important;
    line-height: 120% !important;
}

.body-container__title {
    font: normal normal 700 20px / 22px Tahoma;
}

.body-container__breadcrumbs {
    list-style-position: inside;
    list-style-type: disc;
    unicode-bidi: isolate;
    padding-left: 0;
}

.body-container__breadcrumbs li {
    list-style: none;
    gap: 1px;
}

.body-container__breadcrumbs li::before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border: 5px solid transparent;
    border-left: 5px solid var(--color11);
    position: relative;
    top: 1px;
}

.body-container__breadcrumbs li:first-child::before {
    display: none;
}

.body-container__breadcrumbs li:last-child {
    font-weight: 600;
}

.pagination {

}

.pagination li {
    margin: 0px 2px;
    display: flex;
    justify-content: space-between;
}

.pagination li {
    padding: 2px 0;
}

.pagination li.active {
    padding: 2px 4px;
}

.pagination li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 2px;
}

.pagination li:not(.active):not(:last-child):not(:first-child):not(:nth-last-child(2)) {
    gap: 4px;
}

.pagination li:not(.active):not(:last-child):not(:first-child):not(:nth-last-child(2))::after {
    content: "|";
    display: block;
}

.pagination li.active {
    font-weight: bold;
    background-color: var(--color02);
    border: 0px solid transparent;
    color: #fff;
}

.pagination li a:last-child, .pagination li a:first-child {
    text-decoration: none;
}

.pagination li:has(+ li.active)::after {
    display: none !important;
}

.body-container__tasks {
    grid-template-columns: 1fr 1fr;
    margin: 40px 0;
    gap: 40px 60px;
}

.body-container__task {
    border-bottom: 1px dotted #A0A0A0;
    padding-bottom: 20px;
}

.body-container__task-title {
    font-size: 16px;
    font-weight: 600;
}

.rating-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 5px 0;
}

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%; /* По умолчанию */
}

.rating-value {
    font-size: 12px;
    color: #6c757d;
}

.body-container__task-rating {
    right: 0;
}

.body-container__task-href {
    border: solid 1px #555;
    /*flex: 1;*/
}

.body-container__task-href:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.body-container__img {
    width: 100%;
}

.devider {
    border: 0px solid black;
    border-top: 1px solid #ccc;
}

.container-info__title {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 15px;
}

.container-info__text {
    font-size: 14px;
    line-height: 110%;
}

.nav-mobile {
    display: none;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-mobile__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.nav-mobile__title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.nav-mobile__toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.nav-mobile__hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: all 0.3s;
}

.nav-mobile__hamburger::before,
.nav-mobile__hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #333;
    left: 0;
    transition: all 0.3s;
}

.nav-mobile__hamburger::before {
    top: -6px;
}

.nav-mobile__hamburger::after {
    top: 6px;
}

.nav-mobile__body {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.nav-mobile__body.active {
    display: block;
}

.nav-mobile__group {
    margin-bottom: 12px;
}

.nav-mobile__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
}

.nav-mobile__select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.nav-mobile__select:focus {
    outline: none;
    border-color: #4B76AB;
    box-shadow: 0 0 0 3px rgba(75, 118, 171, 0.1);
}

/* Чипсы */
.nav-mobile__section {
    margin-bottom: 12px;
}

.nav-mobile__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.chip:hover {
    background: #e9ecef;
    border-color: #4B76AB;
}

.chip--active {
    background: #4B76AB;
    color: white;
    border-color: #4B76AB;
}

.chip__badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.chip--active .chip__badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-mobile__divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.nav-mobile__reset {
    display: inline-block;
    padding: 6px 16px;
    margin: 10px 0;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.nav-mobile__reset:hover {
    background: #e0e0e0;
    color: #333;
}


/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.menu-mobile {
    display: none;
    background: #2B2B2B;
    position: relative;
}

.menu-mobile__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #2B2B2B;
    min-height: 48px;
}

.menu-mobile__title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.menu-mobile__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-mobile__hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-mobile__toggle.active .menu-mobile__hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-mobile__toggle.active .menu-mobile__hamburger:nth-child(2) {
    opacity: 0;
}

.menu-mobile__toggle.active .menu-mobile__hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-mobile__nav {
    display: none;
    background: #333;
    padding: 10px 0;
    max-height: 80vh;
    overflow-y: auto;
}

.menu-mobile__nav.active {
    display: block;
}

.menu-mobile__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-mobile__item {
    border-bottom: 1px solid #444;
}

.menu-mobile__item:last-child {
    border-bottom: none;
}

a.menu-mobile__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}

.menu-mobile__link:hover {
    background: #444;
    color: #ffcc00;
}

.menu-mobile__link--new {
    color: #ffcc11;
    font-weight: bold;
}

.menu-mobile__badge {
    display: inline-block;
    background: #ffcc11;
    color: #2B2B2B;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.menu-mobile__link--dropdown {
    position: relative;
}

.menu-mobile__link--dropdown::after {
    content: "▼";
    font-size: 10px;
    color: #999;
    transition: transform 0.3s;
}

.menu-mobile__item--open .menu-mobile__link--dropdown::after {
    transform: rotate(180deg);
}

.menu-mobile__dropdown {
    display: none;
    background: #3a3a3a;
    padding: 0;
    list-style: none;
    margin: 0;
}

.menu-mobile__item--open .menu-mobile__dropdown {
    display: block;
}

.menu-mobile__dropdown-item {
    border-bottom: 1px solid #4a4a4a;
}

.menu-mobile__dropdown-item:last-child {
    border-bottom: none;
}

a.menu-mobile__dropdown-link {
    display: block;
    padding: 10px 20px 10px 40px;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.menu-mobile__dropdown-link:hover {
    background: #444;
    color: #ffcc00;
}

.menu-mobile__item--active > .menu-mobile__link {
    background: #444;
    color: #ffcc00;
}

.body-container__print {
    width: 100px;
    aspect-ratio: 200 / 124;
    background: url('/images/print.jpg') no-repeat 50% 50% / contain;
    cursor: pointer;
    position: absolute;
    right: 0;
}

/* Обертка */
.checkbox-false {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #333;
}

/* Скрываем нативный чекбокс */
.check_manual {
    position: relative;
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 2px solid #ced4da;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin: 0;
}

/* При наведении */
.check_manual:hover {
    border-color: var(--color01);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Когда отмечен */
.check_manual:checked {
    background: var(--color01);
    border-color: var(--color01);
}

/* Галочка */
.check_manual:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Анимация при клике */
.check_manual:checked {
    animation: checkBounce 0.25s ease;
}

@keyframes checkBounce {
    0% { transform: scale(1); }
    50% { transform: scale(0.85); }
    100% { transform: scale(1); }
}

/* Фокус (для доступности) */
.check_manual:focus-visible {
    border-color: var(--color01);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

/* Отключенное состояние (если понадобится) */
.check_manual:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 1400px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {
    .body-container__tasks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-mobile {
        display: block !important;
    }

    .menu-desktop {
        display: none !important;
    }

    .body-container__aside .nav {
        display: block;
    }

    .body-container__aside .nav {
        display: none;
    }

    .body-container {
        background: none;
    }

    .body-container__aside {
        width: 100%;
        margin-bottom: 40px;
    }

    .body-container__main {
        width: 100%;
    }

    .body-container {
        flex-wrap: wrap;
    }

    .body-container__aside .nav__list {
        width: 100%;
        display: none !important;
    }
}

@media (max-width: 576px) {
    body {
        height: 100%;
        min-height: 100%;
    }

    .container-wrapper {
        padding-bottom: 0;
        margin-top: 0 !important;
    }

    .container {
        height: 100%;
        min-height: 100vh;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .header-container__title-wrapper {
        top: 20px;
    }

    .header-container__title {
        line-height: 24px;
    }
}

@media print {
    /* Скрываем всё, кроме элементов с классом .body-container__toprint */
    body * {
        visibility: hidden;
    }

    .body-container__toprint,
    .body-container__toprint * {
        visibility: visible;
    }

    .body-container__toprint {
        position: absolute;
        left: 0;
        top: 60px;
        width: 100%;
    }

    * {
        box-shadow: none !important;
    }

    .body-container__print {
        display: none !important;
    }
}