
    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f8f9fa;
      height: 100%;
      margin: 0; 
    }
    /* Верхний колер и шрифт */
    header {
      background-color: #5b68e3;
      height: 120px;
      transition: top 0.3s;

    }
    header h2 {
      font-weight: 700;
      font-size: 2rem;
    }
    /* Логотип и меню */
    .logo-img {
      max-width: 100px;
      border-radius: 50%;
    }
    /* Меню боковой */
    .bd-sidebar {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 0px;
      margin-top: 60px;
    }
    /* Навигация */
    .bd-links-nav a {
      transition: all 0.3s ease;
    }
    .bd-links-nav a:hover {
      background-color: #e7e7e7;
      border-radius: 4px;
      padding-left: 10px;
    }
    /* Основной блок контента */
    #mainBoard {
      background-color: #fff8e1;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-top: 5px; /* с учетом fixed-top */
      min-height: 100vh;
    }
    /* Карточки */
    .card {
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }
    /* Заголовки */
    h2 {
      color: #333;
      margin-bottom: 20px;
    }
    /* Таблицы */
    table {
      margin-top: 15px;
    }
    /* Кнопки */
    .btn-custom {
      background-color: #5b68e3;
      color: #fff;
      transition: background-color 0.3s;
    }
    .btn-custom:hover {
      background-color: #4a57d1;
    }

/* Чтобы основной контент не заезжал под шапку: */
#mainContent {
  padding-top: 120px; /* равна высоте шапки */
  min-height: 100vh;
}
footer {
  position: relative; /* или static по умолчанию */
}
    #listPrintDetails{
        display: none;
        position: absolute;
        border-radius: 8px;
        top: 100%;
        left: 0;
        right: 0; 
        background: #fff; 
        border: 1px solid #ccc; 
        max-height: 200px; 
        overflow-y: auto; 
        z-index: 1000; 
        margin-top: 2px; 
        list-style: none; 
        padding: 0;
    }
    #divPrintDetails{
        position: relative;
    }
    .PrintDetail{
        padding: 8px; 
        cursor: pointer;
    }
    #listPrintDetails li:hover {
    background-color: #f0f0f0; /* Цвет подсветки */
    }
    #PrintPaperList{
        display: none;
        position: absolute;
        border-radius: 8px;
        top: 100%;
        left: 0;
        right: 0; 
        background: #fff; 
        border: 1px solid #ccc; 
        max-height: 200px; 
        overflow-y: auto; 
        z-index: 1000; 
        margin-top: 2px; 
        list-style: none; 
        padding: 0;
    }
    #divPrintPaper{
        position: relative;
    }
    .PrintPaper{
        padding: 8px; 
        cursor: pointer;
    }
    #PrintPaperList li:hover {
    background-color: #f0f0f0; /* Цвет подсветки */
    }
    #listPrintVariant{
        display: none;
        position: absolute;
        border-radius: 8px;
        top: 100%;
        left: 0;
        right: 0; 
        background: #fff; 
        border: 1px solid #ccc; 
        max-height: 200px; 
        overflow-y: auto; 
        z-index: 1000; 
        margin-top: 2px; 
        list-style: none; 
        padding: 0;
    }
    #divPrintVariant{
        position: relative;
    }
    .PrintVariant{
        padding: 8px; 
        cursor: pointer;
    }
    #listPrintVariant li:hover {
    background-color: #f0f0f0; /* Цвет подсветки */
    }
    #listDeliveryVariant{
        display: none;
        position: absolute;
        border-radius: 8px;
        top: 100%;
        left: 0;
        right: 0; 
        background: #fff; 
        border: 1px solid #ccc; 
        max-height: 200px; 
        overflow-y: auto; 
        z-index: 1000; 
        margin-top: 2px; 
        list-style: none; 
        padding: 0;
    }
    #divDeliveryVariant{
        position: relative;
    }
    .DeliveryVariant{
        padding: 8px; 
        cursor: pointer;
    }
    #listDeliveryVariant li:hover {
    background-color: #f0f0f0; /* Цвет подсветки */
    }

