:root {
    --ct-logo-lg-height: 30px;
    --ct-logo-sm-height: 30px;
}

.logo-lg img {
    margin-top: 10px;
    width: 150px;
    height: auto;
}

.leftside-menu {
    padding-bottom: 0; /* Убрал у меню снизу отступ */
}
.content-page {
    padding-bottom: 0 !important; /* Убрал у контента снизу отступ */
}
.dropdown-toggle::after {
    display: none;
}
/*было сделано для выпадаюшего списка работников */
.list-group-item {
    padding: 6px 15px 6px 11px;
}

#profile .avatar-lg {
    height: 10rem;
    width: 10rem;
}

.timeline-icon {
    font-size: 13px !important;
}

#documents .list-group-item {
    padding: 4px 15px 4px 11px;
}


/* Устанавливаем 100% высоту для board */
.board {
    height: 100%;
    flex-direction: column; /* Если нужно вертикальное распределение */
}

/* Делаем блок tasks прокручиваемым */
.tasks {
    overflow-y: auto; /* Прокрутка по вертикали */
    min-height: 100%; /* Ограничиваем высоту, чтобы не выходило за границы board */
    /* box-sizing: border-box; */ /* Чтобы отступы учитывались в общей высоте */
    margin: 0px;
}
.tasks.tasks:not(:last-child) {
    margin-right: 0.25rem;
}
.popover {
    max-width: 340px; /* Максимальная ширина */
    width: 340px;     /* Фиксированная ширина */
}


.choices__inner {
    min-height: 38px;
    padding: 2.5px 7.5px 3.75px;
    background-color: transparent;
    font-size: .9rem;
}

.choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0;
}

.dropdown-menu {
    width: auto !important;
}

/* ============================================================
   Стили для списка клиентов
   ============================================================ */

/* Таблица клиентов */

.hover-order-list {
	cursor: pointer;
}

.hover-order-list:hover {
	background-color: #f8f9fa;
}

/* Иконки действий */
.action-icon {
	font-size: 18px;
	color: #6c757d;
	margin: 0 4px;
	text-decoration: none;
}

.action-icon:hover {
	color: #000;
}

/* Терминал - прогресс-бар */
.progress-bar-terminal {
	color: #569cd6;
	font-weight: bold;
	font-family: "Courier New", Courier, monospace;
}

/* Терминал - действия с hover */
.terminal-action:hover:not(.terminal-action-clicked) {
	color: #6dd5ff !important;
}

/* IP адреса - копирование при клике */
.ip-copy {
	cursor: pointer;
	position: relative;
	padding-left: 20px;
	transition: color 0.2s;
}

.ip-copy:hover {
	color: #0d6efd;
}

.ip-copy::before {
	content: "\F018F";
	font-family: "Material Design Icons";
	position: absolute;
	left: 0;
	font-size: 14px;
	color: #6c757d;
	opacity: 0;
	transition: opacity 0.2s;
}

.ip-copy:hover::before {
	opacity: 1;
}

/* Хост ссылки - открытие модального окна */
.host-link {
	cursor: pointer;
	transition: color 0.2s;
}

.host-link:hover {
	color: #0d6efd;
}
#terminal_output {
	line-height: 1 !important;
}

/* Wireguard конфигурации */
.font-12 {
	font-size: 12px;
}

.font-11 {
	font-size: 11px;
}

/* Wireguard команды */
.wg-command {
	display: block;
	padding: 4px 8px;
	font-size: 13px;
	font-family: "Courier New", Courier, monospace;
	color: #333;
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.2s;
}

.wg-command:hover {
	background: #e9ecef;
	color: #0d6efd;
}

.wg-command i {
	font-size: 16px;
	margin-right: 4px;
}