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

#main {
	background-size: 100% 100%; 
	background-repeat: no-repeat;
	color: white;
	position: relative;
}

#main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Чёрный цвет с прозрачностью 50% */
    z-index: 1; /* Оверлей должен быть под текстом */
}
#main .content {
    position: relative; /* Текст должен быть поверх оверлея */
    z-index: 2; /* Большее значение z-index для текста */
}

.breadcrumb {
    --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8 6.5 4z' fill='%23ffff00'/%3E%3C/svg%3E");
    /* Измените '%236c757d' на нужный вам HEX-код цвета. */
    /* Например, для красного: '%23ff0000' */
    /* Для белого: '%23ffffff' */
    /* Для желтого: '%23ffff00' */
    /* Цвет разделителя по умолчанию в Bootstrap - #6c757d (серый) */
}

.breadcrumb-item.active {
    color: #fff;
}

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

.footer > .container {
    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 {
    white-space: nowrap;
}

.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 */
.nav li > form > button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

.form-group {
    margin-bottom: 1rem;
}

/* web/css/site.css */

.development-notice {
    position: fixed;
    /* Фиксированное положение относительно окна браузера */
    bottom: 20px;
    /* 20px от нижнего края */
    right: 20px;
    /* 20px от правого края */
    /* Или: */
    /* top: 20px; */
    /* left: 20px; */
    /* Для левого верхнего угла */

    /*background-color: #ffc107;
     Цвет фона (желтый, warning) */
    background-color: rgba(255, 193, 7, 0.7);
    color: #343a40;
    /* Цвет текста (темный) */
    padding: 8px 15px;
    /* Внутренние отступы */
    border-radius: 5px;
    /* Скругленные углы */
    font-weight: bold;
    /* Жирный шрифт */
    font-size: 0.9em;
    /* Размер шрифта */
    z-index: 1050;
    /* Выше других элементов, чтобы всегда быть видимым */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Легкая тень для объема */
    opacity: 0.95;
    /* Небольшая прозрачность */
}

/* Медиа-запрос для мобильных устройств, если нужно сместить или уменьшить */
@media (max-width: 768px) {
    .development-notice {
        bottom: 10px;
        right: 10px;
        font-size: 0.8em;
        padding: 5px 10px;
    }
}