/* Cała tabela — ramka dookoła */
.content-post .custom-class-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    border: 2px solid #e41319; /* pełna ramka dookoła */
}

/* Każda komórka */
.content-post .custom-class-table table th,
.content-post .custom-class-table table td {
    border: 1px solid #e41319;
    padding: 14px 16px;
    font-size: 15px;
    text-align: left;
    background: #f5f5f5; /* delikatne tło – tak jak na Twoim screenie */
}

/* Nagłówki */
.content-post .custom-class-table table th {
    background: #ffffff; /* czysty biały – jak w Twoim wyglądzie */
    font-weight: bold;
}

/* Pierwsza kolumna z nazwą ogrzewania – pogrubiona */
.content-post .custom-class-table table td:first-child {
    font-weight: 700;
}

/* Usunięcie hovera całkowicie */
.content-post .custom-class-table table tr:hover td {
    background: inherit !important;
}
/* Kolumna "Uwagi" — szerokość 300px */
.content-post .custom-class-table table th:nth-child(7),
.content-post .custom-class-table table td:nth-child(7) {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}
