
.theme-checkbox {
    align-self: center;
    --toggle-size: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 6.25em;
    height: 3.125em;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #efefef), color-stop(50%, #2a2a2a)) no-repeat;
    background: -o-linear-gradient(left, #efefef 50%, #2a2a2a 50%) no-repeat;
    background: linear-gradient(to right, #efefef 50%, #2a2a2a 50%) no-repeat;
    background-size: 205%;
    background-position: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 99em;
    position: relative;
    cursor: pointer;
    font-size: var(--toggle-size);
}

.theme-checkbox::before {
    content: "";
    width: 2.25em;
    height: 2.25em;
    position: absolute;
    top: 0.438em;
    left: 0.438em;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #efefef), color-stop(50%, #2a2a2a)) no-repeat;
    background: -o-linear-gradient(left, #efefef 50%, #2a2a2a 50%) no-repeat;
    background: linear-gradient(to right, #efefef 50%, #2a2a2a 50%) no-repeat;
    background-size: 205%;
    background-position: 100%;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.theme-checkbox:checked::before {
    left: calc(100% - 2.25em - 0.438em);
    background-position: 0;
}

.theme-checkbox:checked {
    background-position: 100%;
}

[data-bs-theme="dark"] .navbar-nav .nav-link.active {
    background-color: #3d3d3d;
}


[data-bs-theme="dark"] body {
    background-color: #1a1a1a;
    color: #ffffff !important;
}

[data-bs-theme="dark"] body .table {
    background-color: #1a1a1a;
}

[data-bs-theme="dark"] .table > :not(caption) > * > * {
    background-color: #1a1a1a;
    color: #cdcdcd;
    border-color: #444;
}

[data-bs-theme="dark"] .container .navbar {
    background-color: #1b1a1a !important;
}

/* Дополнительные стили для темной темы */
[data-bs-theme="dark"] .card {
    background-color: #2d2d2d;
    border-color: #444;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #2d2d2d !important;
}

[data-bs-theme="dark"] .btn-light {
    background-color: #444;
    border-color: #555;
    color: #fff;
}

[data-bs-theme="dark"] .chosen-container .chosen-drop {
    background: #5a5a5a;
}

[data-bs-theme="dark"] .chosen-container .chosen-results li.active-result {
    color: white;
}

[data-bs-theme="dark"] .chosen-container-multi .chosen-drop .result-selected {
    color: gray;
}

[data-bs-theme="dark"] .chosen-container-multi .chosen-choices li.search-choice {
    color: white;
}

[data-bs-theme="dark"] .btn-primary {
    background-color: #663eb8;
    border: 1px solid #663eb8;
}

[data-bs-theme="dark"] .btn-danger {
    background-color: #801212;
    border: 1px solid #801212;
}

[data-bs-theme="dark"] .btn-success {
    background-color: #165f16;
    border: 1px solid #165f16;
}

[data-bs-theme="dark"] a.pointer {
    color: white;
}

[data-bs-theme="dark"] .checkbox-wrapper-10 .crm-retail__status-button--yellow {
    background: #ffd43a75;
}