:root {
    --blue: #0d47a1;
    --blue-light: #1976d2;
    --bg: #f2f4f7;
    --card: #ffffff;
    --text: #1a1d21;
    --muted: #6b7280;
    --danger: #d32f2f;
    --ok: #2e7d32;
    --border: #e3e6ea;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    padding-bottom: 100px;
}

.topbar {
    position: sticky;
    top: 0;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-weight: 600;
    z-index: 10;
}
.logo { font-size: 18px; }
.station-tag {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
}

main { padding: 16px; max-width: 640px; margin: 0 auto; }

.card {
    background: var(--card);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

h1 { font-size: 22px; margin: 0 0 16px; }
h3 { font-size: 16px; margin: 0 0 10px; }

label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 14px; }

input[type="text"], input[type="password"], input[type="number"], textarea, select {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: #fff;
    font-family: inherit;
}
textarea { min-height: 80px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue-light); }

.pass-field {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.pass-field input {
    flex: 1;
    margin: 0;
}
.pass-toggle {
    width: auto;
    min-width: 52px;
    margin: 0;
    padding: 0 14px;
    background: #eceff1;
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    border-radius: 10px;
    flex-shrink: 0;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}
.file-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.file-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
}
.file-body {
    flex: 1;
    min-width: 0;
}
.file-title {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--text);
}
.file-desc {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 10px;
    line-height: 1.45;
}
.file-meta {
    font-size: 12px;
    color: #78909c;
    margin-bottom: 10px;
}
.file-download {
    width: auto;
    display: inline-block;
    margin: 0;
    padding: 10px 16px;
    font-size: 15px;
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}
.file-download:active { opacity: 0.9; }

.hint { color: var(--muted); font-size: 13px; margin: 8px 0 0; }
.msg { font-size: 14px; margin-top: 12px; min-height: 18px; }
.msg.error { color: var(--danger); }
.msg.ok { color: var(--ok); }

button {
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 16px;
}
.primary { background: var(--blue); color: #fff; }
.primary:disabled { background: #b0bec5; }
.secondary { background: #eceff1; color: var(--text); }

.link {
    background: none;
    color: var(--blue);
    width: auto;
    padding: 4px 0;
    margin: 0;
    font-size: 14px;
    text-decoration: underline;
}
.back {
    background: none;
    color: var(--blue);
    width: auto;
    padding: 0;
    margin: 0 0 8px;
    font-size: 15px;
}
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* Hub */
.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}
.hub-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #e3f2fd;
    color: var(--blue);
    font-size: 30px;
    padding: 22px 10px;
    margin: 0;
    border-radius: 14px;
}
.hub-btn span { font-size: 14px; font-weight: 600; }
.hub-btn.finish { background: #e8f5e9; color: var(--ok); }

/* Pliki / zdjęcia */
.filebtn {
    display: block;
    text-align: center;
    background: #e3f2fd;
    color: var(--blue);
    border: 2px dashed var(--blue-light);
    border-radius: 12px;
    padding: 22px;
    font-weight: 600;
    margin-top: 8px;
    cursor: pointer;
}
.photo-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.photo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
}
.photo-item img {
    width: 64px; height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #ddd;
}
.photo-item .idx { font-weight: 700; color: var(--blue); width: 28px; text-align: center; flex-shrink: 0; }
.photo-item .name { flex: 1; font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.photo-item .ctrls { display: flex; gap: 4px; flex-shrink: 0; }
.photo-item .ctrls button { width: 38px; height: 38px; padding: 0; margin: 0; border-radius: 8px; background: #eceff1; font-size: 18px; line-height: 1; }
.photo-item .ctrls .del { background: #fdecea; color: var(--danger); }

/* Formularze danych */
.field-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    margin-top: 14px;
    background: #fafbfc;
}
.field-card input, .field-card textarea, .field-card select { margin-bottom: 8px; }
.opt-tag {
    display: inline-block;
    vertical-align: middle;
    padding: 2px 8px;
    border-radius: 999px;
    background: #eceff1;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.presets { display: flex; gap: 8px; flex-wrap: wrap; }
.preset {
    width: auto;
    margin: 0;
    padding: 8px 14px;
    background: #eceff1;
    color: var(--text);
    font-size: 14px;
    border-radius: 999px;
}

details { margin-top: 8px; }
summary { cursor: pointer; color: var(--blue); font-size: 14px; }

/* Anteny - picker przyciskowy */
.ant-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.ant-tab {
    flex: 1;
    margin: 0;
    padding: 10px 4px;
    background: #eceff1;
    color: var(--text);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 14px;
}
.ant-tab.active { background: var(--blue); color: #fff; }
.ant-tab .cnt {
    font-size: 12px;
    background: rgba(0,0,0,0.12);
    border-radius: 999px;
    padding: 0 7px;
    min-width: 18px;
}
.ant-tab.active .cnt { background: rgba(255,255,255,0.25); }

.ant-chips { display: flex; flex-wrap: wrap; gap: 6px; min-height: 36px; margin-bottom: 10px; }
.ant-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e3f2fd;
    color: var(--blue);
    border-radius: 999px;
    padding: 6px 6px 6px 12px;
    font-size: 13px;
    max-width: 100%;
}
.ant-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ant-chip button {
    width: 22px; height: 22px;
    margin: 0; padding: 0;
    border-radius: 50%;
    background: rgba(13,71,161,0.15);
    color: var(--blue);
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
}

.ant-copy { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; font-size: 13px; color: var(--muted); }
.ant-copy-btn { width: auto; margin: 0; padding: 6px 12px; background: #eceff1; color: var(--text); border-radius: 999px; font-size: 13px; }

.ant-btn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.ant-btn {
    margin: 0;
    padding: 10px 6px;
    background: #f1f8e9;
    color: var(--text);
    border: 1px solid #dcedc8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}
.ant-btn:active { background: #dcedc8; }
.ant-btn .id { font-weight: 700; color: var(--ok); font-size: 13px; }
.ant-btn .nm { font-size: 11px; color: var(--muted); line-height: 1.2; }

.ant-add { display: flex; gap: 8px; margin: 10px 0; }
.ant-add input { margin: 0; }
.ant-add button { width: auto; flex-shrink: 0; }
.ant-manage-list { list-style: none; padding: 0; margin: 8px 0 0; font-size: 13px; }
.ant-manage-list li { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.del-ant { width: 30px; height: 30px; margin: 0; padding: 0; border-radius: 8px; background: #fdecea; color: var(--danger); flex-shrink: 0; }

/* Baterie - przelacznik wpisu recznego */
.bat-manual-toggle { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; color: var(--text); cursor: pointer; }
.bat-manual-toggle input { width: 18px; height: 18px; margin: 0; }
.bat-struct { display: flex; flex-direction: column; gap: 8px; }
.bat-manual-input { margin: 0; }

/* Combainery - wybrane pozycje z licznikiem */
.comb-chosen { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.comb-row { display: flex; align-items: center; gap: 10px; background: #f1f8e9; border: 1px solid #dcedc8; border-radius: 10px; padding: 8px 10px; }
.comb-name { flex: 1; font-size: 14px; line-height: 1.25; }
.comb-stepper { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.comb-stepper button { width: 34px; height: 34px; margin: 0; padding: 0; border-radius: 8px; background: #fff; border: 1px solid var(--border); color: var(--text); font-size: 18px; font-weight: 700; }
.comb-stepper button:active { background: #e8f5e9; }
.comb-cnt { min-width: 24px; text-align: center; font-weight: 700; }
.comb-del { width: 34px; height: 34px; margin: 0; padding: 0; border-radius: 8px; background: #fdecea; color: var(--danger); flex-shrink: 0; }

.pomiar-group { margin-bottom: 12px; }
.pomiar-lab { font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.pomiar-row { display: flex; gap: 8px; }
.pomiar-row input { margin: 0; }

/* Status */
.status-list { list-style: none; padding: 0; margin: 0; }
.status-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.status-list .sl { font-weight: 600; }
.status-list .sv { color: var(--muted); text-align: right; font-size: 14px; }
.status-list li.opt .sl { color: var(--muted); font-weight: 500; }
.status-list li.opt .sv { font-style: italic; opacity: .75; }
.status-foot { margin-top: 16px; }
.status-foot p { margin: 6px 0; }

/* Lista stacji (zarządzanie) */
.stations-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.station-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
}
.st-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.st-name {
    font-size: 16px;
    line-height: 1.3;
    word-break: break-word;
}
.st-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.st-badges:empty { display: none; }
.st-meta { font-size: 13px; color: var(--muted); }
.st-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.st-actions button {
    margin: 0;
    padding: 10px 8px;
    font-size: 13px;
}
.st-actions .st-edit,
.st-actions .st-ftp,
.st-actions .st-zip {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
}
.st-edit { background: #e8f5e9; color: var(--ok); }
.st-zip { background: #e3f2fd; color: var(--blue); }
.st-del {
    background: #fdecea;
    color: var(--danger);
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
}

@media (min-width: 520px) {
    .station-row {
        flex-direction: row;
        align-items: center;
    }
    .st-info { flex: 1; }
    .st-actions {
        flex-wrap: nowrap;
        width: auto;
        max-width: 52%;
    }
    .st-actions .st-edit,
    .st-actions .st-ftp,
    .st-actions .st-zip,
    .st-actions .st-del {
        flex: 0 1 auto;
        min-width: 0;
        width: auto;
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Stacja zakończona */
.station-row.done { border-color: #b7e0bd; background: #f4fbf5; }
.st-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ok);
    background: #e3f4e5;
    border-radius: 999px;
    padding: 1px 8px;
    vertical-align: middle;
    white-space: nowrap;
}
/* Wysyłka na FTP */
.st-ftp { background: #ede7f6; color: #4527a0; }
.st-badge.ftp { color: #4527a0; background: #ede7f6; }
.st-badge.stale { color: #8a5a00; background: #fff3d6; }
.st-ftp-state { font-size: 13px; }
.st-ftp-state:empty { display: none; }
.st-ftp-state.working { color: #4527a0; }
.st-ftp-state.error { color: var(--danger); }

.st-keep { font-size: 12px; color: var(--muted); }

/* Automatyczne zwalnianie miejsca */
.cleanup-box {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.cleanup-box .hint { margin: 0 0 6px; }
.cleanup-box .hint.warn { color: #8a5a00; font-weight: 600; }
.cleanup-box button { width: auto; margin: 2px 0 0; padding: 0; }

.ftp-dirs {
    margin-top: 12px;
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
}
.ftp-dirs .hint { margin: 0 0 6px; }
.ftp-dirlist {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 220px;
    overflow-y: auto;
}
.ftp-dirlist li {
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.ftp-dirlist li:last-child { border-bottom: none; }
.ftp-dirlist button {
    width: 100%;
    margin: 0;
    padding: 10px 4px;
    background: none;
    color: var(--text);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}
.ftp-dirlist button:active { background: #eceff1; }
.ftp-dirlist .ftp-up { color: var(--blue); font-weight: 600; }
.ftp-dirlist .hint { display: block; padding: 10px 4px; }
#btnFtpUseDir { margin-top: 10px; }

/* Miejsce na dysku */
.storage-box {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 12px;
}
.storage-head { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; gap: 8px; }
.storage-nums { color: var(--muted); font-weight: 600; }
.storage-bar { margin: 8px 0 6px; height: 8px; background: #e0e0e0; border-radius: 999px; overflow: hidden; }
.storage-fill { height: 100%; background: var(--blue-light); }
.storage-free { font-size: 13px; color: var(--muted); }

/* Kolejka wysyłki - narzędzia galerii / zaznaczanie zdjęć */
.gallery-tools { margin-top: 10px; }
.gallery-sel-bar { display: flex; gap: 8px; margin-top: 8px; }
.gallery-sel-bar button { margin: 0; flex: 1; }
.gcell.selected { outline: 3px solid var(--blue); outline-offset: -3px; }
.gcheck {
    position: absolute;
    top: 4px; right: 4px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    display: none;
}
.gcell.selected .gcheck { display: block; }

/* Pasek akcji / overlay */
.actionbar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
}
.actionbar span { font-weight: 600; white-space: nowrap; font-size: 13px; }
.actionbar button { margin: 0; flex: 1; padding: 14px 10px; font-size: 15px; }

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 50;
}
.overlay p { font-weight: 600; }
.spinner {
    width: 44px; height: 44px;
    border: 4px solid #cfd8dc;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.progress { width: 70%; max-width: 300px; height: 8px; background: #e0e0e0; border-radius: 999px; overflow: hidden; }
#progressBar { height: 100%; width: 0%; background: var(--blue); transition: width 0.2s; }

/* Pasek wysyłki w tle */
.upload-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--blue);
    color: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-top, 0px));
    z-index: 60;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.upload-banner.ok { background: var(--ok); }
.upload-banner.error { background: var(--danger); }
.ub-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; gap: 12px; }
#uploadBannerText { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ub-progress { margin-top: 6px; height: 5px; background: rgba(255,255,255,0.35); border-radius: 999px; overflow: hidden; }
#uploadBannerBar { height: 100%; width: 0%; background: #fff; transition: width 0.2s; }

/* Galeria zdjęć w stacji */
.station-photos { margin-top: 16px; }
.gallery {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 6px;
}
.gcell {
    position: relative;
    margin: 0; padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #e9edf2;
    cursor: pointer;
}
.gcell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gidx {
    position: absolute;
    left: 4px; bottom: 4px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 999px;
}

/* Lightbox - podgląd pełnoekranowy */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lb-close, .lb-nav {
    position: absolute;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px; height: 48px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.lb-close { top: calc(12px + env(safe-area-inset-top, 0px)); right: 16px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-cap {
    position: absolute;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: 0; right: 0;
    text-align: center;
    color: #fff;
    font-size: 13px;
    padding: 0 12px;
}

/* Okno potwierdzenia */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.modal-box p { margin: 0 0 18px; font-size: 16px; line-height: 1.4; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions button { margin: 0; flex: 1; }

/* Toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    background: #323232;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 90;
}
.toast.error { background: var(--danger); }

/* Przypomnienie o obowiązkowych zdjęciach */
.reminder-box {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 12px;
}
.reminder-title { margin: 0 0 8px; font-weight: 700; font-size: 15px; }
.reminder-list { margin: 0; padding-left: 20px; }
.reminder-list li { font-size: 14px; line-height: 1.45; margin-bottom: 6px; }
.reminder-list li:last-child { margin-bottom: 0; }

.reminder-details { margin-top: 14px; }
.reminder-details > summary {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 10px;
    padding: 12px 14px;
    color: #8a6d00;
    font-weight: 700;
    font-size: 14px;
    list-style: none;
}
.reminder-details > summary::-webkit-details-marker { display: none; }
.reminder-details[open] > summary { border-radius: 10px 10px 0 0; margin-bottom: -1px; }
.reminder-details .reminder-box { margin-top: 0; border-radius: 0 0 12px 12px; }

/* Instrukcja */
.help-sec {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fafbfc;
    margin-top: 10px;
    overflow: hidden;
}
.help-sec > summary {
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    list-style: none;
}
.help-sec > summary::-webkit-details-marker { display: none; }
.help-sec > summary::after { content: " ⌄"; color: var(--muted); }
.help-sec[open] > summary { border-bottom: 1px solid var(--border); background: #f0f3f7; }
.help-sec[open] > summary::after { content: " ⌃"; }
.help-sec p, .help-sec ul { margin: 10px 14px; font-size: 14px; line-height: 1.5; }
.help-sec ul { padding-left: 20px; }
.help-sec li { margin-bottom: 7px; }
.help-sec textarea { width: calc(100% - 28px); margin: 0 14px 10px; font-size: 15px; }
.help-sec button { width: calc(100% - 28px); margin: 0 14px 14px; }
.help-sec .msg { margin: 0 14px 12px; }

/* Checkbox w kolejce wysyłki */
.q-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}
.q-check input { width: 20px; height: 20px; margin: 0; flex-shrink: 0; }

.hidden { display: none !important; }
