/* stil za vse strani */
body {
  background-color: #1a1a1a;
  color: #f2f2f2;
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0 5%;
}

/* Naslovi */
h1, h2, h3 {
  color: #00aaff;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

/* Povezave */
a {
  color: #00ccff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #66e0ff;
}

/* uno t kul */
.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #111;
  padding: 15px 0;
  border-bottom: 2px solid #00aaff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar a {
  color: #f2f2f2;
  background-color: #222;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.navbar a:hover {
  background-color: #00aaff;
  color: #111;
  transform: scale(1.05);
}

/* Slike */
img {
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
  max-width: 100%;
  height: auto;
}

/* Noga strani */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  border-top: 2px solid #00aaff;
  color: #aaa;
  margin-top: 40px;
}

/* Tabela */
table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 16px;
  background-color: #222;
  color: #f2f2f2;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
}

th, td {
  border: 1px solid #00aaff;
  padding: 10px 15px;
  text-align: center;
}

th {
  background-color: #00aaff;
  color: #111;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #2a2a2a;
}

tr:hover {
  background-color: #333;
  transition: 0.3s;
}

/* ===== en primer classa ===== */
.poudarek {
  background-color: #222;
  padding: 10px 15px;
  border-left: 4px solid #00aaff;
  border-radius: 6px;
  font-size: 1.05em;
}

/* ===== primer IDa ===== */
#uvodni-opis {
  font-style: italic;
  color: #ffe066;
}