/*
 * Poprawiony arkusz stylów CSS
 * Wprowadzono klasy dla wątku 'Dylemat' i usunięto encje &nbsp;
 */

/* v2.0 | 20110126
 * License: none (public domain)
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1em;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* ---------------------------------------------------------------------- */
/* Globalne style dla całej strony */
/* ---------------------------------------------------------------------- */
body {
	font-family: Arial, sans-serif, 'Segoe UI';
	line-height: 1.6;
	color: #333;
	background-color: #f0f4f8;
	margin: 0;
	padding: 20px;
}

/* Główny kontener treści */
.container {
	max-width: 1000px;
	margin: auto;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ---------------------------------------------------------------------- */
/* Style dla nagłówków */
/* ---------------------------------------------------------------------- */
h1 {
	color: #00a;
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
}

/* Domyślny styl H2 */
h2 {
	color: #0056b3;
	border-bottom: 2px solid #0056b3;
	padding-bottom: 5px;
	margin-top: 35px;
	font-size: 1.8em;
}

/* Klasa dla głównego nagłówka sekcji (np. Dylemat) */
.section-title {
	color: #0056b3; /* Głęboki niebieski */
	border-bottom: 2px solid #0056b3;
	padding-bottom: 5px;
	margin-top: 20px;
	font-size: 1.8em;
}

/* Domyślny styl H3 */
h3 {
	color: #a00;
	margin-top: 20px;
	font-size: 1.2em;
	font-weight: bold;
}

/* Klasa dla nagłówków podsekcji (np. Porównanie...) */
.subsection-title {
	color: #a00;
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 1.4em;
	font-weight: bold;
}

/* ---------------------------------------------------------------------- */
/* Style dla list */
/* ---------------------------------------------------------------------- */
ul, ol {
	list-style-position: outside;
	padding-left: 20px;
}

ul {
	list-style: none;
}

ol {
	list-style-type: decimal;
}

li {
	margin-bottom: 8px;
}

/* Styl listy podsumowującej (Wnioski) */
.summary-list {
	list-style-type: disc;
	padding-left: 25px;
}

/* Styl dla list z boldowanymi elementami */
ol li b, ul li b {
	font-weight: bold;
	color: #a00;
}

/* ---------------------------------------------------------------------- */
/* Style dla wyróżnień tekstowych */
/* ---------------------------------------------------------------------- */
strong {
	color: #0a0; /* Domyślny kolor dla strong */
	font-weight: normal;
}

/* Wyróżnienia dla nazw produktów */
ol ul strong {
	font-weight: bold;
	color: #a00;
}

/* Wyróżnienia kolorystyczne */
.r { color: #a00;}
span.g { color: #0a0;}
span.b { color: #00a;}

em {
	color: #660;
}

/* ---------------------------------------------------------------------- */
/* Style dla tabel (Dylemat) */
/* ---------------------------------------------------------------------- */
.data-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}

.data-table th, .data-table td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: left;
}

/* Nagłówek tabeli */
.table-header th {
	background-color: #e9ecef;
	color: #495057;
	font-weight: bold;
	text-transform: uppercase;
}

/* Nazwa cechy w tabeli */
.feature-name {
	font-weight: bold;
	background-color: #f8f8f8;
}

/* Wyróżnienia kolumn */
.value-dynamic { color: #0056b3; font-weight: bold; } /* Niebieski */

/* Nowa reguła: Styl dla drugiego pogrubienia w listach ramki (kolor czarny) */
.important-note ol strong:nth-of-type(2) {
    color: #800; /* Czarny kolor czcionki */
    font-weight: bold; /* Zapewnienie silnego pogrubienia */
}