table {
    width: 80%;
    margin: auto;
    border-collapse: collapse; /* Объединяем границы */
}

th, td {
    border: 1px solid black; /* Чёткие границы */
    padding: 8px; /* Добавляем отступ */
    text-align: center;
}

th {
    background-color: #4A90E2; /* Цвет заголовков */
    color: white;
    font-weight: bold;
}
