body {
    max-width: 815px;
    margin: auto;
    background-color:#FCCDB6;
}

.container, .navbar-dark, .nav-item, .nav-link, .navbar, .navbar-nav, .bg-success  {
    background-color:#B7472A;
}

a {
    color: #B7472A;
}

a:hover {
    color: #d74d2b;
}

/* На больших экранах делаем меню горизонтальным и фиксируем внутри navbar */
@media(min-width:768px){
    #menuItems {
        position: static !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        padding-top: 0 !important;
        background-color: transparent !important;
        transition: none !important;
        max-width: 100%; /* Не вылезает за body */
        overflow: hidden; /* На всякий случай */
    }
    #menuOverlay {
        display: none !important;
    }
}


.pt-2,.py-2 {
    padding-top: .3rem!important;
    padding-bottom: .3rem!important;
}

header {
    text-align: center;
    vertical-align: middle;
    font-size: 20pt;
    border-bottom: 1px solid gray;
    background-color: #F6F8F2;
}

.navbar {
    padding: 0rem 0rem
}


h1 {
    font-size: 20pt;
}

h2 {
    text-align: center;
    font-size: 15pt;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 10px;
}

footer {
    border-top: 1px solid gray;
    padding: 10px;
    background-color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

main {
    padding: 10px;
    background-color: white;
}

.center {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
}


.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 560px;
}


.video-link {
    text-align: left;
    vertical-align: middle;
}

p {
    margin: 0px;
}

ul {
    margin: 0px;
}

h3 {
    margin: 0px;
    font-size: 16px;
}

.text-decoration-line-through {
 text-decoration: line-through;
}

.group-actual
{
    background-color: #e6f7e6;
}

ol {
    padding-inline-start: 10px;
}

/* Все disabled чекбоксы делаем чуть бледнее */
input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Отмеченные disabled чекбоксы делаем более заметными */
input[type="checkbox"]:checked:disabled {
    opacity: 1; /* полностью яркий */
    accent-color: #28a745; /* зелёный как у bootstrap-success */
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.5); /* лёгкая подсветка */
}


.nav-item {
    font-size: 95%;
}

.modal-title {
    font-size: 14pt;
}