@font-face {
    font-family: 'Manrope'; 
    src: url('/static/fonts/Manrope-VariableFont_wght.ttf') format('truetype'); 
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope'; 
    src: url('/static/fonts/Manrope-VariableFont_wght.ttf') format('truetype'); 
    font-weight: 600;
    font-style: normal;
}

body {
    width: 1680px;
    height: 1188px;
    padding: 40px;
    padding-bottom: 60px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    gap: 80px; 
}

.page {
    width: 760px;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-bottom: 2px solid #EBEBEB;
}


#SndPage {
    position: relative; 
}

.picContainer {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 720px;
    margin: 0;
    padding: 0;
}

.picContainer svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 760px;
    height: 720px;
    z-index: 0;
  }

.picContainer > *:not(svg) {
    position: relative;
    z-index: 1;
  }
  
.bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 760px;
    height: 720px;
    z-index: 0;
}
.bigImage {
    display: block;
    width: 100%;
    height: 620px;
    margin: 0;
    padding: 0;
}

.bigImage img {
    margin-left: 18px;
    margin-top: 12px;
    width: 250px;   /* фиксируем ширину */
    height: auto;   /* высота будет автоматически, сохраняя пропорции */
    display: block; /* чтобы убрать возможные пробелы под картинкой */
  }

.name_pics {
    display: flex;
    gap: 20px; /* или сколько тебе нужно */
    align-items: center; /* выравнивание по центру по вертикали */
}

h1 {
    font-family: 'Manrope';
    font-size: 65px; /* Размер шрифта */
    font-weight: 600;
    color: black;
    margin: 0;
}

h2 {
    font-family: 'Manrope';
    font-size: 30px; /* Размер шрифта */
    font-weight: 600;
    color: black;
    white-space: nowrap;
    margin: 0;
}


h3 {
    font-family: 'Manrope';
    font-size: 15px; /* Размер шрифта */
    font-weight: 600;
    width: auto;
    color: black;
    margin-top: 15px;
    margin-bottom: 30px;
}

.image-container {
    display: flex;
    gap: 9px;
    padding-bottom: 14px;
    margin-left: auto; /* прижмёт контейнер к правому краю */
    padding-right: 25px;
}

.image-container img {
    display: block;           /* Делаем изображения блочными для надежности */
    height: 40px;
}

.Tables {
    display: flex;
    gap: 20px; /* или сколько тебе нужно */
}

.table-one {
    display: block;
    flex: 1;
    table-layout: fixed;
    font-family: 'Manrope';
    font-size: 12px;
    border-collapse: collapse; /* убирает лишние отступы */
    line-height: 1.2; /* обеспечивает ровную высоту текста */
    width: 100%;
}

.draft-container {
    flex-shrink: 0; /* прижимается к верху */
}

.draft-pic {
    flex: 1;
    table-layout: fixed;
    font-family: 'Manrope';
    font-size: 12px;
    border-collapse: collapse; /* убирает лишние отступы */
    line-height: 1.2; /* обеспечивает ровную высоту текста */
    width: 120px;
}

.draft {
    flex: 1;
    table-layout: fixed;
    font-family: 'Manrope';
    font-size: 12px;
    border-collapse: collapse; /* убирает лишние отступы */
    line-height: 1.2; /* обеспечивает ровную высоту текста */
    width: 240px;
}

.table-one td {
    padding: 1px;            /* убирает внутренние отступы */
    vertical-align: top;   /* выравнивание текста по верхнему краю */
}

.row1 {
    font-weight: 600;

}

.row2 {
    font-weight: 400;

}

.row3 {
    height: 10px; /* отступ между блоками */
}

.my-table {
    border-collapse: collapse;
    width: 100%;
}

.my-table td {
    height: 280px;
    width: 50%;
    padding: 0;
    box-sizing: border-box;
    border: none;
    text-align: left;       /* влево */
    vertical-align: top;    /* вверх */
}

.text-wrapper {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 16px;            /* скруглённые углы */
    background-color: #C2D5FF;      /* светло-серый фон */

    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: black;

    margin: 0px;
}

.table-three {
    position: absolute;
    font-family: 'Manrope';
    font-weight: 300;
    font-size: 8px;
    width: 100%; 
    border-collapse: collapse;
    bottom: 0px;
}

.table-three td {
    padding: 2px;
    vertical-align: top;
    height: 20px;
}

.table-three-tr th {
    background-color: #ffffff;
    padding: 2px;
    padding-bottom: 8px;
    text-align: center;
    vertical-align: top;
}

.table-three-tr th:nth-child(2) {
    text-align: left; 
}
.table-three tr:nth-child(even) {
    background-color: #ffffff; /* Светло-серый фон для четных строк */
}

.table-three tr:nth-child(odd) {
    background-color: #EBEBEB; /* Белый фон для нечетных строк */
}

.table-three td:first-child {
    width: 50px;              /* Фиксированная ширина для первого столбца */
    text-align: center;
}

.table-three td:not(:first-child) {
    width: auto;               /* Остальные столбцы подстраиваются автоматически */
    text-align: center;
}

.table-three td:nth-child(2) {
    text-align: left; 
    width: 200px;          /* Фиксированная ширина для первого столбца */
}


