/* Základní vzhled stránky */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
  color: #fff;
  background-color: #444;
  line-height: 1.6;
}

/* Nadpisy */
h1, h2 {
  text-align: center;
  color: rgb(158, 214, 73);
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px #000;
}

/* Ceník – obecný wrapper */
.cenik-section {
  width: 90%;
  margin: 0 auto 40px auto;
  padding: 20px;
  background: #555;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Tabulky */
.cenik-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 6px;
}

/* Hlavička tabulky */
.cenik-table thead {
  background-color: rgb(158, 214, 73);
  color: #000;
}

.cenik-table th, .cenik-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #666;
  width: 30%;
}

/* Pruhování řádků */
.cenik-table tbody tr:nth-child(even) {
  background-color: #555
}
.cenik-table tbody tr:nth-child(odd) {
  background-color: #666;
}

/* Styl pro nabídku produktů */
.offer-box {
    background: #333;
    border-left: 5px solid rgb(158, 214, 73);
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    color: #fff;
    line-height: 1.6;
}

.offer-box h2, 
.offer-box h3 {
    color: #f1b000;
    margin-top: 0;
    text-shadow: 1px 1px 2px #000;
}

.offer-box p {
    margin-bottom: 10px;
}

.offer-box strong {
    color: #f1b000;
}

p {
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 20px;
  text-align: center;
  margin: 20px 5%;
}

/* 🔹 Nové pravidlo – tabulka s pěti sloupci */
.cenik-table.five-cols {
  table-layout: fixed;
  width: 100%;
}

.cenik-table.five-cols th,
.cenik-table.five-cols td {
  width: 20%;
  box-sizing: border-box;
}

/* Responzivita */
@media (max-width: 768px) {
  .cenik-table th, .cenik-table td {
    padding: 8px;
    font-size: 14px;
  }
}
