body {
  font-family: Arial;
  background: #eef2f7;
  margin: 0;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.grid-2, .grid-3 {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

input, textarea, select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea { min-height: 70px; }

.hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 5px;
}

.btn-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

button {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary { background: #b91c1c; }
.btn-secondary { background: #1d4ed8; }
.btn-muted { background: #4b5563; }

.message, .error {
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  display: none;
}

.message { background: #dcfce7; }
.error { background: #fee2e2; }

.sheet {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  page-break-after: always;
}

/* 🔥 FOOTER NA VSAKEM LISTU */
.sheet::after {
  content: "GZ Šentjur";
  position: absolute;
  bottom: 10mm;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #555;
}

.sheet-header {
  text-align: center;
  border-bottom: 2px solid black;
  margin-bottom: 15px;
}

.options {
  list-style: none;
  padding-left: 0;
}

.options li::before {
  content: "○ ";
  font-size: 18px;
}

.question {
  margin-bottom: 20px;
}

.signatures {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

/* 🔽 FOOTER NA APP STRANI */
.app-footer {
  text-align: center;
  padding: 15px;
  color: #6b7280;
  font-size: 13px;
}
@media print {
  .no-print { display: none; }

  .sheet {
    position: bottom;
/*    min-height: 240mm; /* skoraj A4 */
    padding-bottom: 25mm; /* prostor za footer */
  }

  .sheet::after {
    content: "GZ Šentjur";
    position: absolute;
    bottom: 5mm; /* res čisto spodaj */
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #555;
  }

}