/* === Globalno podešavanje === */
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Naslov */
h1 {
  text-align: left;
  font-size: 40pt;
  font-weight: bold;
  color: black;
  font-style: italic;
  margin: 30px 20px;
}

/* Opis jela */
p.opis {
  font-weight: normal;
  font-size: 24pt;
  line-height: 1.3;
  margin-top: 5px;
  color: #444;
}

/* Tabela */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

/* Redovi */
table tbody tr {
  border-bottom: 2px solid #ccc;
  padding: 20px 0;
}

/* Ćelije */
td {
  font-size: 26pt;
  font-weight: bold;
  color: black;
  padding: 20px;
  vertical-align: top;
}

/* Prva ćelija - opis */
table tr td:first-child {
  text-align: left;
  width: 85%;
}

/* Druga ćelija - cijena */
table tr td:last-child {
  text-align: center;
  width: 15%;
  font-size: 30pt;
  color: #000;
}
