*, *::before, *::after {
}:root {
  --primary: #1c7eff;
  --primary-dark: #0056d6;
  --primary-light: #e8f2ff;
  --primary-glow: rgba(28, 126, 255, 0.15);
  --surface: #f0f8ff; /* azure */
  --surface-white: #ffffff;
  --text-primary: #0d1f3c;
  --text-muted: #4a6fa5;
  --text-on-primary: #ffffff;
  --border-radius: 14px;
  --border-radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(28, 126, 255, 0.08);
  --shadow-md: 0 4px 20px rgba(28, 126, 255, 0.14);
  --shadow-lg: 0 8px 40px rgba(28, 126, 255, 0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header,
.lista-predmeta {
  width: min(90%, 1100px);
  margin: 20px auto;
  background: var(--surface-white);
  padding: 28px;
  color: var(--primary);
  border: 1.5px solid rgba(28, 126, 255, 0.2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}/* Subtle top accent bar */
.header::before,
.lista-predmeta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #56a4ff);
}
.lista-predmeta h2 {
  color: var(--primary-dark);
}

.lista-predmeta li {
  list-style-type: none;
}

.lista-predmeta li a, .header .text h4 a, ul li a {
  text-decoration: none;
  color: var(--primary);
  transition: .3s;
}

.lista-predmeta li a:hover, .header .text h4 a:hover, ul li a {
  color: var(--primary-dark);
}

.header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}.header img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-sm);
}/* ============================================
   HEADER TEXT
   ============================================ */
.header .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}.header .text h1 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}.header .text h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.header .text .links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}.header .text .links {
  display: flex;
}
table {
  width: min(90%, 700px);
  margin: 24px auto;
  border-collapse: collapse;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-white);
}thead {
  background: linear-gradient(135deg, var(--primary) 0%, #56a4ff 100%);
  color: var(--text-on-primary);
}thead th {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  padding: 14px 16px;
}tbody tr {
  transition: background var(--transition);
}tbody tr:nth-child(even) {
  background: var(--primary-light);
}tbody tr:hover {
  background: var(--primary-glow);
}td {
  border: 1px solid rgba(28, 126, 255, 0.12);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
}th {
  border: none;
  padding: 14px 16px;
}

footer, .site-footer, .footer {
    display: none !important;
}