/* Ogólne style */
body {
  background-color: #ffffff;
  color: #222;
  font-family: Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Linki */
a {
  color: #1a73e8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Nagłówki */
h1, h2 {
  color: #111;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 24px;
}

/* Akapity i listy */
p {
  margin-bottom: 15px;
}
ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 8px;
}

/* Tabela */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 30px;
}
table th,
table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

/* Obrazki */
img {
  max-width: 100%;
  height: auto;
}

/* Styl kursywy i pogrubienia */
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
