/* Добавить в CSS сайта */
.chart-container {
    position: relative;
    height: 60vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .chart-container {
        height: 40vh;
    }
}

/*
.sitemap {
    list-style: none;
    padding-left: 0;
  }
  .sitemap ul {
    padding-left: 40px;
    list-style: none;
  }
  .sitemap li {
    margin: 5px 0;
    position: relative;
  }
  .level-1 { font-weight: bold; }
  .level-2 { font-weight: normal; }
  .active { color: #ff0000; }
  .parent > a { color: #0066cc; }
  */ 
.due-date.far {
    font-style: italic; /* Месяц и больше */
}

.due-date.one-week-left {
    color: green; /* До недели */
}

.due-date.one-day-left {
    color: red; /* Сегодня/завтра */
}

.due-date.passed {
    color: red;
    font-weight: bold; /* Просрочено */
}


/* Базовые стили для контейнера и колонок */
.sitemap-columns {
    list-style: none; /* Убираем стандартные маркеры */
    padding: 0;
    margin: 0;

}

/* Стили для всех пунктов списка */
.sitemap-item {
    margin-bottom: 2px;
    break-inside: avoid; /* Предотвращает разрыв элемента списка между колонками */
}

/* Стили для ссылок */
.sitemap-link {
    text-decoration: none;
    color: #333;
    display: inline-block;
    padding: 1px 0;
}

.sitemap-link:hover {
    color: #007bff;
}

/* Стили для активного элемента */
.sitemap-item.active {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

/* Стили для различных уровней вложенности */
.sitemap-item.level-1 {
    font-size: 1.2em;
    margin-top: 10px;
}

.sitemap-item.level-2 {
    font-size: 0.9em;
    margin-left: 30px;
}

.sitemap-item.level-3 {
    margin-left: 30px;
    font-size: 0.8em;
}

/* Стили для иконок */
.sitemap-link i,
.sitemap-item.active i {
    margin-right: 8px;
}

/* Описание карточки */

.lab-container-info {
    max-width: 1000px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.lab-container-info table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.lab-container-info th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #edf2f7;
}
.lab-container-info th {
    background-color: #ebf4ff;
    color: #2c5282;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}
.lab-container-info tr:hover {
    background-color: #f7fafc;
}
.lab-container-info tr:last-child td {
    border-bottom: none;
}
.lab-container-info td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.lab-container-info td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.lab-container-info .checked-true {
    color: #38a169;
    font-weight: 600;
}
.lab-container-info .checked-false {
    color: #e53e3e;
    font-weight: 600;
}