/* ---------------------------------------------------
   Layout ogólny
--------------------------------------------------- */
body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 20px;
  color: #333;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.pageTitle {
  text-align: center;
  margin: 0 0 12px 0;
}

/* Tytuł widoczny tylko przy wydruku */
.printTitle {
  display: none;
  text-align: center;
  font-weight: 700;
  font-size: 18pt;
  margin-bottom: 8mm;
}

/* ---------------------------------------------------
   Karty (taby)
--------------------------------------------------- */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tabButton {
  width: 5cm;
  height: 2cm;
  white-space: normal;
  line-height: 1.1;
  text-align: center;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.tabButton.active {
  background: #e3e3e3;
  border-color: #aaa;
}

/* ---------------------------------------------------
   Tabela budżetowa (UI)
--------------------------------------------------- */
table.budgetTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.budgetTable th,
.budgetTable td {
  border: 1px solid #ccc;
  padding: 4px 6px;
  font-size: 14px;
  vertical-align: middle;
}

.budgetTable th {
  background: #eaeaea;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

/* ---------------------------------------------------
   Formularze i kontrolki
--------------------------------------------------- */
input,
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
}

textarea {
  resize: vertical;
  min-height: 50px;
}

button {
  cursor: pointer;
  padding: 4px 8px;
  margin: 0 2px;
  font-size: 14px;
}

button:disabled,
.exportBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fileButton {
  display: inline-block;
  padding: 4px 8px;
  background: #f0f0ff;
  border: 1px solid #aab;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/* Walidacja – na czerwono po błędzie */
input.invalid,
select.invalid,
textarea.invalid {
  color: #c00;
}

/* Usuwanie spinnerów dla number (na wszelki wypadek) */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------------------------------------------------
   Karta: Nagłówek i uzasadnienie (UI)
--------------------------------------------------- */
.headerCard .headerForm {
  margin-top: 14px;
  max-width: 22cm;
}
.headerCard .row {
  display: flex;
  align-items: center;
  margin: 6px 0;
}
.headerCard .label {
  width: 10cm;
  text-align: right;
  margin-right: 12px;
  font-weight: 600;
}
.headerCard .field {
  width: 10cm;
}

/* Bloki szerokie (np. Tytuł, Uzasadnienie) */
.headerWide {
  max-width: 22cm;
}

.spacedLeftButton {
  margin: 6px 0;
}

/* ---------------------------------------------------
   Karta: Start
--------------------------------------------------- */
.startCard {
  max-width: 22cm;
  margin: 14px auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.5;
}
.startCard p {
  margin: 0 0 8px 0;
}

/* ---------------------------------------------------
   Karta: WYDRUK
--------------------------------------------------- */
.optionsCard {
  max-width: 22cm;
  width: 100%;
  padding: 14px 16px;
  margin: 14px auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "export"
    "reg"
    "form";
  row-gap: 12px;
  background: #fff;
}

.optionsCard .hint {
  color: #a00;
  font-size: 13px;
}

.optionsCard .exportPanel {
  grid-area: export;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.exportBtn {
  flex: 0 1 auto;
  min-width: 5.2cm;
  padding: 14px 16px;
  min-height: 56px;
  line-height: 1.3;
  white-space: normal;
  border: 1px solid #bbb;
  background: #f6f6f6;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
}

.exportBtn--narrow {
  min-width: 3.2cm;
}

.optionsCard .regRow {
  grid-area: reg;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.optionsCard .headerForm {
  grid-area: form;
  max-width: 100%;
  justify-self: end;
}

.optionsCard .headerForm .row {
  display: flex;
  align-items: center;
  margin: 14px 0;
  justify-content: flex-end;
}

.optionsCard .headerForm .label {
  width: 10cm;
  text-align: right;
  margin-right: 12px;
  font-weight: 500;
  color: #666;
  font-size: 12px;
}
.optionsCard .headerForm .label.labelSmall {
  color: #666;
  font-weight: 500;
  font-size: 12px;
}

.optionsCard .headerForm .field.fieldNarrow {
  width: 10cm;
}

/* ---------------------------------------------------
   Responsywność
--------------------------------------------------- */
@media (max-width: 1000px) {
  .optionsCard {
    grid-template-columns: 1fr;
    grid-template-areas:
      "export"
      "reg"
      "form";
  }
  .optionsCard .exportPanel {
    width: 100%;
  }
  .exportBtn {
    flex: 1 1 100%;
    min-width: 0;
  }
  .exportBtn--narrow {
    min-width: 0;
  }
  .optionsCard .regRow {
    justify-content: flex-start;
  }
  .optionsCard .headerForm {
    justify-self: stretch;
  }
  .optionsCard .headerForm .label {
    width: 6cm;
  }
  .optionsCard .headerForm .field.fieldNarrow {
    width: 100%;
  }
}

/* ---------------------------------------------------
   Drukowanie
--------------------------------------------------- */
@media print {
  .pageTitle,
  .tabs,
  button,
  .fileButton,
  .exportBtn {
    display: none !important;
  }
  .printTitle {
    display: block !important;
  }
  body {
    padding: 0;
  }
}

/* ---------------------------------------------------
   Sticky nagłówki i podsumowania w tabelach
--------------------------------------------------- */
.tableScroller {
  max-height: 60vh;
  overflow: auto;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.tableScroller > table.budgetTable {
  margin-top: 0;
}

table.budgetTable thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #eaeaea;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06) inset;
}

table.budgetTable tfoot td,
table.budgetTable tfoot th {
  position: sticky;
  bottom: 0;
  z-index: 4;
  background: #fff;
  box-shadow: 0 -1px 0 rgba(0,0,0,0.06) inset;
}

@media (max-width: 1000px) {
  .tableScroller { overflow: auto; }
}

/* ---------------------------------------------------
   Delikatnie WYŻSZE pole „Zadanie” (+3mm) i niższe podsumowanie
--------------------------------------------------- */
.budgetTable textarea[data-pole="zadanie"] {
  height: calc(38px + 3mm);
  min-height: calc(38px + 3mm);
  line-height: 1.25;
  padding-top: 3px;
  padding-bottom: 3px;
}

table.budgetTable tfoot td,
table.budgetTable tfoot th {
  padding-top: 2px;
  padding-bottom: 2px;
}
/* Style dla komunikatu o blokadzie */
#app-blocked-message {
  display: none; /* Domyślnie ukryty */
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
  text-align: center;
  background-color: #f8f9fa;
  color: #343a40;
  padding: 20px;
}
/* ---------------------------------------------------
   Style dla nowej strony startowej z obrazkiem
--------------------------------------------------- */

.start-layout-container {
  display: flex;         /* Włączamy tryb flexbox, aby ułożyć elementy obok siebie */
  align-items: center;   /* Wyrównujemy elementy w pionie do środka */
  gap: 30px;             /* Dodajemy odstęp 30px między obrazkiem a tekstem */
}

.start-image-container {
  flex: 0 0 40%;         /* Obrazek zajmie 40% szerokości, nie będzie się rozciągał ani kurczył */
  max-width: 450px;      /* Maksymalna szerokość obrazka, aby nie był za duży na szerokich ekranach */
}

.start-image-container img {
  width: 100%;           /* Obrazek dopasuje się do szerokości swojego kontenera */
  height: auto;          /* Zachowuje proporcje */
  display: block;        /* Usuwa ewentualne dodatkowe odstępy pod obrazkiem */
  border-radius: 8px;    /* Dodajemy zaokrąglone rogi, aby pasowało do stylu kart */
}

.start-text-container {
  flex: 1;               /* Kontener z tekstem zajmie całą pozostałą dostępną przestrzeń */
}

/* Responsywność: na mniejszych ekranach układ zmienia się na pionowy */
@media (max-width: 800px) {
  .start-layout-container {
    flex-direction: column; /* Zmieniamy układ na pionowy (elementy jeden pod drugim) */
  }

  .start-image-container {
    max-width: 90%;       /* Obrazek może być szerszy na widoku mobilnym */
    margin-bottom: 20px;  /* Dodajemy margines pod obrazkiem */
  }
}