<style>
.custom-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
border: 2px solid #28a745;
border-radius: 25px;
overflow: hidden;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}
.custom-table th,
.custom-table td {
padding: 16px 20px;
text-align: left;
vertical-align: top;
border-bottom: 1px solid #e9f7ef;
}
.custom-table thead tr {
background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
color: white;
font-weight: 600;
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.custom-table tbody tr {
transition: all 0.3s ease;
}
.custom-table tbody tr:hover {
background-color: #f1f9f4 !important;
transform: scale(1.005);
}
.custom-table tbody tr:nth-child(odd) {
background-color: #f8fff9;
}
.custom-table tbody tr:nth-child(even) {
background-color: #f2fff4;
}
.custom-table thead tr th:first-child {
border-top-left-radius: 25px;
}
.custom-table thead tr th:last-child {
border-top-right-radius: 25px;
}
.custom-table tbody tr:last-child td:first-child {
border-bottom-left-radius: 25px;
}
.custom-table tbody tr:last-child td:last-child {
border-bottom-right-radius: 25px;
}
.comp-type {
font-weight: bold;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.9em;
display: inline-block;
}
.comp-yes {
background: linear-gradient(135deg, #28a745, #34ce57);
color: white;
}
.comp-no {
background: linear-gradient(135deg, #dc3545, #ff6b7a);
color: white;
}
.law-ref {
background: rgba(255,255,255,0.2);
padding: 2px 8px;
border-radius: 12px;
font-size: 0.85em;
font-weight: 500;
}
</style>
<table class="custom-table">
<thead>
<tr>
<th>Критерий</th>
<th>Закупка с состязательностью</th>
<th>Закупка БЕЗ состязательности</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Пример способа закупки</strong></td>
<td><span class="comp-type comp-yes">Открытый конкурс, Аукцион, Запрос предложений с участием ≥ 2 участников</span></td>
<td><span class="comp-type comp-no">Закупка у единственного поставщика, Прямое направление оферты</span></td>
</tr>
<tr>
<td><strong>Наличие конкуренции</strong></td>
<td><span class="comp-yes">Да, несколько участников соперничали за контракт</span></td>
<td><span class="comp-no">Нет, контрагенту направлен проект договора без сравнения с другими</span></td>
</tr>
<tr>
<td><strong>Обязанность заказчика при уклонении победителя</strong></td>
<td><span class="comp-yes">Обязан направить сведения в ФАС для включения в РНП</span></td>
<td><span class="comp-no">Не обязан направлять сведения в РНП</span></td>
</tr>
<tr>
<td><strong>Обязанность заказчика при расторжении договора через суд</strong></td>
<td><span class="comp-yes">Обязан направить сведения в ФАС для включения в РНП</span></td>
<td><span class="comp-no">Не обязан направлять сведения в РНП</span></td>
</tr>
<tr>
<td><strong>Правовое обоснование</strong></td>
<td><span class="law-ref">ч. 2 ст. 5 Закона № 223-ФЗ</span><br><span class="law-ref">Письмо ФАС № ГР/90477/25</span></td>
<td><span class="law-ref">Письмо ФАС № ГР/90477/25</span></td>
</tr>
</tbody>
</table>