main > .container, main > .container-fluid {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
}

.footer > .container, .footer > .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.navbar form > button.logout {
    border: none;
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .navbar form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.navbar form > button.logout:focus,
.navbar form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.navbar form > button.logout:focus {
    outline: none;
}

.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item > a
{
    text-decoration: none;
}
/* Контейнер site-index с новой фоновой картинкой */
/*.site-index {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    height: 100vh; !* 100% высота видимой области *!*/
/*    background: rgba(255, 255, 255, 0.75); !* Новая фоновая картинка *!*/
/*}*/

/* Стилизация блока jumbotron с полупрозрачным фоном */
.jumbotron {
    background-color: rgba(255, 255, 255, 0.9); /* Полупрозрачный фон блока jumbotron */
    padding: 40px; /* Добавление отступов для разделения */
    border-radius: 15px; /* Закругленные углы */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); /* Тень блока для эффекта глубины */
    text-align: center;
}

/* Стилизация текста в блоке jumbotron */
.jumbotron h1 {
    font-size: 3rem; /* Увеличенный размер шрифта */
    color: #007bff; /* Цвет текста с акцентом */
    margin-bottom: 30px; /* Отступ вниз */
}

.jumbotron p {
    font-size: 1.5rem; /* Увеличенный размер шрифта */
    color: #333; /* Цвет текста */
}

/* Стилизация ссылки как кнопки с плавным градиентным переходом и отступами */
.btn-link {
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: #fff;
    font-size: 1.5rem;
    padding: 20px 40px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 50px;
    transition: background 0.3s ease;
}

.btn-link:hover {
    text-decoration: none;
    background: linear-gradient(45deg, #00bcd4, #007bff);
}

/* Мобильный стиль */
@media screen and (max-width: 600px) {
    .btn-link {
        font-size: 1.2rem; /* Уменьшенный размер шрифта для мобильных устройств */
        padding: 15px 30px; /* Меньшие отступы к кнопке для мобильных устройств */
        margin-top: 30px; /* Меньший отступ сверху кнопки для мобильных устройств */
    }
}
.corner-label {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.corner-label::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 90px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}

.corner-label-production::before {
    border-color: #1cc88a transparent transparent transparent;
}

.corner-label-test::before {
    border-color: #f6c23e transparent transparent transparent;
}

.label-text {
    text-align: center;
    position: absolute;
    transform: rotate(-45deg);
    white-space: nowrap;
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.label-text-test {
    top: 10px;
    left: 14px;
}

.label-text-production {
    top: 10px;
    left: 2px;
}