/* Стили для меню, кнопок и форм с корпоративным цветом */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.container-md{
    flex: 1 0 auto;
}
.tech-panel{
    flex-shrink: 0;
}
#login_window {
    margin-top: 30%;
}
#login_btn{
    color: black;
    background-color:#f7ec20;
    border-color: darkgrey;
}
#login_btn:hover{
    background-color:yellow;
}
.form-control:focus {
    border-color: #f7ec20;
    box-shadow: 0 0 10px rgba(247, 236, 32, 1);
    outline: none;
}
.form-select:focus {
    border-color: #f7ec20;
    box-shadow: 0 0 10px rgba(247, 236, 32, 1);
    outline: none;
}

#nav_link {
	color: black; /* Цвет обычной ссылки */
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
#nav_link:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 0;
    height: 3px; /* Высота линии */
    background-color: #f7ec20; /* Цвет подчеркивания при исчезании линии*/
    transition: width 0.5s; /* Время эффекта */
}
#nav_link:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 3px; /* Высота линии */
    background-color: #f7ec20; /* Цвет подчеркивания при появлении линии*/
    transition: width 0.5s;  /* Время эффекта */
}
.list-group-item:hover{
    border-color: #f7ec20;
    box-shadow: 0 0 5px rgba(247, 236, 32, 0.5);
}
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: lightgrey;
    color: #fff;
    padding: 10px; 
    text-align: center;
    z-index: 999;
}
.note_title{
    max-width:250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
/* конец */
.env-badge {
    background: #adb5bd;
    padding: 2px 16px;
    margin-bottom: 2px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.env-badge.prod {
    border-left: 4px solid #0d6efd;
}
.env-badge.dev {
    border-left: 4px solid #dc3545;
}
.env-title {
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 1.1em;
    font-weight: 600;
}
.env-title.prod {
    color: #0d6efd;
}
.env-title.dev {
    color: #dc3545;
}
.env-detail {
    margin-bottom: 2px;
    font-family: monospace;
    color: #495057;
}
.env-label {
    color: #212529;
    font-weight: 600;
}
.comment-field{
    resize: vertical;
    min-height: 38px;
    max-height: 200px;
    overflow-y: hidden;
    line-height: 1.5;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.comment-button{
    background:#3b8cff; 
    border: 1px solid #3b8cff;
    border-left: none;
    height: 38px;
    min-height: 38px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex-shrink: 0;
}