/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://yourdomain.com
 Description:  Child theme for GeneratePress
 Author:       Tvoje ime ili naziv sajta
 Author URI:   https://yourdomain.com
 Template:     generatepress
 Version:      1.0.0
*/

/* Ovde možeš dodavati svoje CSS izmene */
h1 {
  font-size: 1.8rem; /* ili npr. 22px */
  line-height: 1.4;
  margin-bottom: 1em;
}

h2 {
  font-size: 1.5rem; /* ili npr. 22px */
  line-height: 1.4;
  margin-bottom: 1em;
}
h3 {
  font-size: 1.3rem; /* ili npr. 22px */
  line-height: 1.4;
  margin-bottom: 1em;
}
/* Uklanja donje crte koje se pojavljuju ispod ikonica u footeru */
.site-footer i::after {
  display: none !important;
  content: none !important;
}

.site-footer i {
  line-height: 1;
  vertical-align: middle;
  text-decoration: none;
}

/* Opcionalno: ukloni underline i sa <a> linkova ako ga ima */
.site-footer a {
  text-decoration: none !important;
}

/* === VIP Tipovi: osnovni izgled tabela === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-family: system-ui, sans-serif;
  font-size: 16px;
}

th, td {
  padding: 0.6em 1em;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background-color: #f5f5f5;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #555;
}

/* === Link u koloni Meč === */
td a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

td a:hover {
  text-decoration: underline;
}

/* === Vizuelno označavanje pogodaka i promašaja === */
td.win {
  color: #1a7f37; /* zelena */
  font-weight: bold;
}

td.loss {
  color: #c62828; /* crvena */
  font-weight: bold;
}

td.void {
  color: #888; /* siva za nerešeno/void */
  font-style: italic;
}

/* === Specifične tabele po kategoriji (primeri) === */
table.analize-fudbal {
  border-left: 4px solid #007bff;
}

table.analize-tenis {
  border-left: 4px solid #28a745;
  background-color: #f8fef8;
}

table.analize-vip {
  border-left: 4px solid #d4af37;
  background-color: #fffcee;
}

@media (max-width: 768px) {
  table {
    font-size: 15px;
  }
  th, td {
    padding: 0.4em 0.6em;
  }
}
@media (max-width: 768px) {
  .pretplata-grid {
    grid-template-columns: 1fr !important;
  }
}
