
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

    body {
      font-size: 18px;
      line-height: 1.5;
      color: #000;
      font-weight: 500;
      font-family: "Poppins", sans-serif;
      background-repeat: no-repeat;
      background-size: 100% 600px;
      box-sizing: border-box;
      background-color: #ffd77d;
    }

    .header {
      background-color: #ffffff;
      padding: 24px;
      margin-bottom: 24px;
    }

    .header-body {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .header-body h1 {
      font-weight: 400;
      font-size: 27px;
      text-transform: uppercase;
    }

    .logo {
      max-width: 200px;
      max-height: 125px;
    }

    .wizard {
      max-width: 960px;
      margin: 0 auto
    }

    .step {
      border-radius: 16px;
      background: #ffffff;
      padding: 40px;
      margin-bottom: 16px
    }

    .row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      align-items: end;
    }

    .row div {
      width: 100%
    }

    .row .full {
      grid-column: 1 / -1
    }

    .actions {
      display: flex;
      gap: 8px;
      justify-content: space-between;
      margin-top: 12px
    }

    .hidden {
      display: none
    }

    label {
      display: block;
      font-weight: 400;
      font-size: 15px;
      margin: 6px 0 4px
    }

    button {
      border-radius: 8px;
      padding: 16px 24px;
      line-height: 140%;
      font-size: 16px;
      font-family: "Inter", sans-serif;
      background-color: #388eff;
      border: 1px solid #388eff;
      font-weight: 700;
      color: #fff;
      cursor: pointer
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 8px 12px;
      border: 1px solid #cfd7ff;
      border-radius: 8px;
      background: #f4f6fe;
      font-size: 16px;
      font-family: "Poppins", sans-serif;
      box-sizing: border-box
    }

    .dropzones {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 12px
    }

    .dz-clickable {
      background: #fff
    }

    .dz {
      border: 1px dashed #cbd5e1;
      border-radius: 12px;
      padding: 10px
    }

    .error {
      color: #b91c1c;
      margin: 8px 0
    }

    /* vnořené sekce v detailu (nejsou top-level .step) */
    .substep {
      border-radius: 12px;
      background: #fff;
      padding: 16px;
      margin-top: 12px
    }

    /* progress */
    .progress {
      margin: 16px 0 24px;
      background-color: #ffffff;
      border-radius: 16px;
      padding: 24px;
    }

    .progress__bar {
      position: relative;
      height: 6px;
      background: #e5e7eb;
      border-radius: 999px;
      overflow: hidden;
    }

    .progress__bar-fill {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: #ff7613;
      transition: width .25s ease;
    }

    .progress__steps {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      padding: 8px 0 0;
      margin: 0;
    }

    .progress__steps li {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 14px;
      color: #6b7280;
      padding: 6px 8px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e7eb;
    }

    .progress__steps li.is-active {
      color: #111827;
      border-color: #ff7613;
      box-shadow: 0 0 0 1px #ff7613 inset;
      font-weight: 600;
    }

    .progress__steps li.is-done {
      color: #065f46;
      border-color: #10b981;
      background: #ecfdf5;
    }

    .lbl-wrap {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .tip {
      position: relative;
      display: inline-inline-block;
      cursor: help;
      font-family: "Inter", sans-serif;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1px solid #cbd5e1;
      text-align: center;
      font-size: 12px;
      line-height: 18px;
    }

    .tip:hover .tip-content,
    .tip:focus .tip-content {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -6px);
    }

    .tip-content {
      position: absolute;
      left: 50%;
      bottom: 100%;
      transform: translate(-50%, 0);
      background: #111827;
      color: #fff;
      padding: 8px 10px;
      border-radius: 8px;
      font-size: 12px;
      width: 260px;
      max-width: 80vw;
      box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
      opacity: 0;
      visibility: hidden;
      transition: all .15s ease;
      z-index: 50;
    }

    .tip-content::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: #111827 transparent transparent transparent;
    }

    .power {
      margin-bottom: 16px;
    }

    .power a {
      color: #ff7613;
    }
