/* Styl TF (ToolsForge) - V1.9.6 (Pełna zgodność z bazowym CSS) */
:root {
    --tf-red: #b23434;
    --tf-deep-blue: #2f4a68;
    --tf-dark-slate: #2f3742;
    --tf-text: #5b6470;
    --tf-border: #e6e8eb;
    --tf-gray: #f6f7f9;
    --pure-white: #ffffff;
    --tf-accent: #e67e22;
    --tf-success: #27ae60;
}

body { font-family: Arial, Helvetica, sans-serif; background-color: var(--tf-gray); color: var(--tf-dark-slate); margin: 0; padding: 20px; }
h1 { color: var(--tf-deep-blue); text-align: center; margin-bottom: 30px; font-size: 2.2em; line-height: 1.2; text-transform: uppercase; letter-spacing: 1px; }

/* KARTY I GRID */
.tf-card { background: var(--pure-white); border-radius: 2px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); padding: 30px; border-top: 4px solid var(--tf-red); margin-bottom: 30px; border-left: 1px solid var(--tf-border); border-right: 1px solid var(--tf-border); border-bottom: 1px solid var(--tf-border); }
.tf-card.equal-h { display: flex; flex-direction: column; height: 100%; margin-bottom: 0; }

.dashboard-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 20px; }
.full-width { grid-column: 1 / -1; }
@media (max-width: 1024px) { 
    .dashboard-grid { grid-template-columns: 1fr; } 
    .tf-card.equal-h { height: auto; }
}

/* TYPOGRAFIA TF (Zgodna z plikami bazowymi) */
.tf-generator-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--tf-red);
    text-transform: uppercase;
    margin: 0 0 12px;
    display: block;
}

/* FORMULARZE */
label { display: flex; align-items: center; font-weight: 700; margin-bottom: 8px; color: var(--tf-dark-slate); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
select, input[type="number"].form-input, input[type="text"].form-input { width: 100%; padding: 12px 15px; border: 1px solid var(--tf-border); border-radius: 2px; font-size: 15px; box-sizing: border-box; background: var(--pure-white); margin-bottom: 15px; color: var(--tf-dark-slate); font-weight: 700; font-family: inherit; }
select:focus, input[type="number"].form-input:focus { border-color: var(--tf-red); background: var(--pure-white); outline: none; }
input[type="range"] { width: 100%; cursor: pointer; accent-color: var(--tf-deep-blue); }

#dynamic-variants { background: var(--tf-gray); border: 1px solid var(--tf-border); border-left: 4px solid var(--tf-dark-slate); border-radius: 2px; padding: 20px; margin-bottom: 15px; }

/* CUSTOM RADIO TILES (Nogi) */
.tf-radio-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.tf-radio-tile label { display: flex; align-items: center; justify-content: center; background: var(--pure-white); border: 1px solid var(--tf-border); padding: 15px 10px; font-size: 14px; font-weight: 700; color: var(--tf-dark-slate); cursor: pointer; transition: 0.2s; text-align: center; margin: 0; height: 100%; box-sizing: border-box; text-transform: none; letter-spacing: 0; border-radius: 2px; }
.tf-radio-tile input[type="radio"] { display: none; }
.tf-radio-tile input[type="radio"]:checked + label { border-color: var(--tf-red); background: #fef8f8; color: var(--tf-red); box-shadow: inset 0 0 0 2px var(--tf-red); }

/* TOOLTIP SYSTEM */
.tf-tooltip-wrapper { position: relative; display: inline-flex; align-items: center; margin-left: 10px; cursor: help; vertical-align: middle; }
.tf-tooltip-icon { background: var(--tf-dark-slate); color: var(--pure-white); font-size: 11px; font-weight: 800; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; transition: 0.2s; border-radius: 2px; text-transform: none; }
.tf-tooltip-wrapper:hover .tf-tooltip-icon { background: var(--tf-red); }
.tf-tooltip-text { visibility: hidden; opacity: 0; width: 280px; background-color: var(--pure-white); color: var(--tf-dark-slate); text-align: left; padding: 15px; border: 1px solid var(--tf-border); border-top: 3px solid var(--tf-red); position: absolute; z-index: 100; bottom: 135%; left: 50%; transform: translateX(-50%); transition: opacity 0.3s, bottom 0.3s; font-size: 13px; font-weight: 500; line-height: 1.5; box-shadow: 0 4px 15px rgba(0,0,0,0.1); text-transform: none; letter-spacing: 0; border-radius: 2px; }
.tf-tooltip-text::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -6px; border-width: 6px; border-style: solid; border-color: var(--tf-border) transparent transparent transparent; }
.tf-tooltip-wrapper:hover .tf-tooltip-text { visibility: visible; opacity: 1; bottom: 150%; }

/* TABS */

/* FIX DLA CHOWAJĄCEJ SIĘ LISTY WARIANTÓW */
#dynamic-variants {
    overflow: visible !important;
}
.tf-config-grid .tf-card {
    overflow: visible !important;
}
.tf-custom-options {
    z-index: 99999 !important; /* Totalne wymuszenie na wierzch */
}
.tf-tabs { display: flex; border: 1px solid var(--tf-border); border-radius: 2px; overflow: hidden; margin-bottom: 15px; background: var(--tf-gray); }
.tf-tab { flex: 1; min-height: 48px; display: flex; align-items: center; justify-content: center; color: var(--tf-dark-slate); font-weight: 700; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: 0.25s ease; border-right: 1px solid var(--tf-border); }
.tf-tab:last-child { border-right: none; }
.tf-tab.active { background: var(--tf-deep-blue); color: var(--pure-white); border-color: var(--tf-deep-blue); }
.tab-content { display: none; font-weight: 700; }
.tab-content.active { display: block; }

#warning-msg { display: none; color: var(--pure-white); background: var(--tf-dark-slate); font-size: 0.9em; margin-top: 15px; font-weight: bold; padding: 12px 15px; border-left: 4px solid var(--tf-red); text-transform: uppercase; letter-spacing: 0.5px; }

/* TOGGLES */
.toggle-group { display: flex; gap: 15px; align-items: flex-start; background: var(--tf-gray); padding: 15px; border: 1px solid var(--tf-border); border-left: 4px solid var(--tf-deep-blue); border-radius: 2px; margin-bottom: 15px; }
.toggle-group.accent { border-left-color: var(--tf-red); }
.toggle-group input[type="checkbox"] { width: 22px; height: 22px; margin-top: 2px; cursor: pointer; accent-color: var(--tf-deep-blue); flex-shrink: 0; }
.toggle-group label { display: block; margin-bottom: 0 !important; cursor: pointer; width: 100%; }
.toggle-group label strong { color: var(--tf-dark-slate); font-size: 15px; text-transform: none; font-weight: 800; display: flex; align-items: center; margin-bottom: 4px; }
.toggle-desc { font-size: 13px; color: var(--tf-text); line-height: 1.5; font-weight: 400; text-transform: none; margin-top: 4px; }

/* PRZYCISKI TF (FLASH EFFECT) */
.tf-btn { display: inline-flex !important; align-items: center; justify-content: center; text-align: center; min-height: 48px; width: 100%; padding: 13px 26px !important; margin-bottom: 0; font-family: Arial, Helvetica, sans-serif !important; font-weight: 700 !important; font-size: 14px !important; text-transform: uppercase; letter-spacing: 0.45px; border-radius: 2px !important; text-decoration: none !important; transition: all 0.25s ease; position: relative; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important; cursor: pointer; border: none !important; box-sizing: border-box; white-space: nowrap; }
.tf-btn-main { background: var(--tf-deep-blue) !important; color: var(--pure-white) !important; border: 1px solid var(--tf-deep-blue) !important;}
.tf-btn-red { background: var(--tf-red) !important; color: var(--pure-white) !important; border: 1px solid var(--tf-red) !important;}
.tf-btn-orange { background: var(--tf-accent) !important; color: var(--pure-white) !important; border: 1px solid var(--tf-accent) !important;}
.tf-btn-main:hover { background: #243447 !important; border-color: #243447 !important; transform: translateY(-1px); }
.tf-btn-red:hover { background: #9e2c2c !important; border-color: #9e2c2c !important; transform: translateY(-1px); }
.tf-btn-orange:hover { background: #d35400 !important; border-color: #d35400 !important; transform: translateY(-1px); }

.tf-btn-flash::after { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: all 0.6s; z-index: 1; pointer-events: none; }
.tf-btn-flash:hover::after { left: 125%; }

/* Rysunek 2D i Suwaki */
#svg-container svg { width: 100%; height: auto; max-height: 500px; display: block; background: var(--pure-white); }
.svg-measure-ext { fill: var(--tf-text); font-size: 13px; font-weight: bold; }
.svg-measure-int { fill: #2980b9; font-size: 11px; font-weight: bold; }

.opacity-control { background: var(--tf-gray); padding: 15px; border-radius: 2px; border: 1px solid var(--tf-border); border-left: 4px solid #2980b9; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.opacity-control label { margin: 0; display: flex; align-items: center; font-size: 13px; text-transform: uppercase; font-weight: 800; color: var(--tf-dark-slate); }
.opacity-control input[type="range"] { flex: 1; max-width: 400px; accent-color: var(--tf-deep-blue); }

/* Wizualizacja 3D i Pasek Narzędzi */
#viewer-3d { width: 100%; height: 500px; background: #e0e6ed; border-radius: 2px; overflow: hidden; position: relative; border: 1px solid var(--tf-border); display: block; }
#viewer-3d canvas { display: block; outline: none; width: 100%; height: 100%; }
.viewer-overlay { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.95); padding: 8px 15px; font-size: 13px; font-weight: bold; border-radius: 2px; color: var(--tf-dark-slate); border-left: 4px solid var(--tf-red); z-index: 5;}

.viewer-toolbar { display: flex; justify-content: flex-end; gap: 10px; margin-top: 15px; width: 100%; }
.viewer-btn { background: var(--pure-white); border: 1px solid var(--tf-border); color: var(--tf-dark-slate); padding: 10px 20px !important; font-size: 13px !important; font-family: inherit !important; font-weight: 700 !important; text-transform: uppercase; border-radius: 2px !important; cursor: pointer; transition: 0.25s ease; min-width: 90px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.viewer-btn:hover { background: var(--tf-gray); border-color: var(--tf-border); transform: translateY(-1px); }
.viewer-btn.btn-explode { background: var(--tf-accent) !important; color: var(--pure-white) !important; border-color: var(--tf-accent) !important; }
.viewer-btn.btn-explode:hover { background: #d35400 !important; }

/* Lista Cięcia i Koszyk Zestawienie */
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 2px solid var(--tf-border); margin-bottom: 20px; }
.cart-header label { margin: 0; display: flex; align-items: center; cursor: pointer; font-size: 14px; text-transform: none; color: var(--tf-dark-slate); font-weight: 700; }
.cart-header input[type="checkbox"] { width: 20px; height: 20px; margin-right: 10px; accent-color: var(--tf-deep-blue); }

.cart-row { display: flex; align-items: center; padding: 15px 25px; border: 1px solid var(--tf-border); border-radius: 2px; margin-bottom: 15px; background: var(--pure-white); justify-content: space-between; }
.cart-row input[type="checkbox"] { width: 20px; height: 20px; margin-right: 20px; accent-color: var(--tf-deep-blue); cursor: pointer; }
.cart-row-details { flex-grow: 1; }
.cart-row-title { font-weight: 700; color: var(--tf-dark-slate); font-size: 15px; text-transform: uppercase; }
.cart-row-meta { font-size: 13px; color: var(--tf-text); font-weight: 500; margin-top: 2px; }

.qty-control { display: flex; align-items: stretch; border: 1px solid var(--tf-border); border-radius: 2px; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; border: none; background: var(--tf-gray); color: var(--tf-dark-slate); font-weight: 700; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: #e3e6ea; }
.qty-input { width: 60px; height: 40px; border: none; border-left: 1px solid var(--tf-border); border-right: 1px solid var(--tf-border); background: var(--pure-white); text-align: center; font-weight: 700; font-size: 15px; color: var(--tf-dark-slate); padding: 0; }

#tf-floating-preview { position: fixed; display: none; width: 250px; height: 180px; background: var(--pure-white); border: 3px solid var(--tf-red); border-radius: 2px !important; box-shadow: 0 10px 25px rgba(0,0,0,0.15); z-index: 10000; background-size: contain; background-position: center; background-repeat: no-repeat; pointer-events: none; }

@media (max-width: 767px) {
  .cart-header { flex-direction: column; align-items: flex-start; gap: 15px; }
  .cart-row { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px; }
  .qty-control { width: 100%; justify-content: center; }
  .qty-input { width: 100px; }
}



/* =====================================================
   TF LAYOUT HARD FIX V3 - PEŁNE SEKCJE I BRAK DOLNEJ LINII
   Cel: wymusić tła sekcji niezależnie od kontenera motywu WP.
===================================================== */
body #tf-plugin-wrapper {
    display: block !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: auto !important;
    margin-left: -50vw !important;
    margin-right: 0 !important;
    margin-top: -45px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: var(--pure-white) !important;
    border: 0 !important;
    box-shadow: none !important;
}

body #tf-plugin-wrapper .tf-generator-section {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    clip-path: none !important;
}

body #tf-plugin-wrapper .tf-generator-section::before,
body #tf-plugin-wrapper .tf-generator-section::after {
    display: none !important;
    content: none !important;
}

body #tf-plugin-wrapper .tf-generator-section.tf-bg-gray,
body #tf-plugin-wrapper section.tf-generator-section.tf-bg-gray {
    background: #f6f7f9 !important;
    background-color: #f6f7f9 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: inset 0 1px 0 #e3e6ea !important;
}

body #tf-plugin-wrapper .tf-generator-section.tf-bg-white,
body #tf-plugin-wrapper section.tf-generator-section.tf-bg-white {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

body #tf-plugin-wrapper .tf-generator-section:last-of-type,
body #tf-plugin-wrapper .tf-generator-section.tf-bg-gray:last-of-type,
body #tf-plugin-wrapper section.tf-generator-section:last-of-type {
    border-bottom: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

body #tf-plugin-wrapper + *,
body #tf-plugin-wrapper ~ *,
body #tf-plugin-wrapper ~ hr,
body #tf-plugin-wrapper + hr {
    border-top: 0 !important;
}

body footer,
body .site-footer,
body #colophon,
body [class*="footer"] {
    border-top: 0 !important;
}

/* =====================================================
   TF — NOWY WYBÓR BLATÓW (V3.2.13)
===================================================== */
#dynamic-variants {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    margin-bottom: 15px !important;
}
.tf-panel-positions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    background: var(--tf-dark-slate);
    color: #fff;
    border-left: 4px solid var(--tf-red);
}
.tf-panel-positions-head > div { min-width: 0; }
.tf-panel-positions-head strong { display: block; font-size: 13px; font-weight: 900; letter-spacing: .045em; }
.tf-panel-positions-head span:not(.tf-panel-positions-count) { display: block; margin-top: 3px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.4; }
.tf-panel-positions-count { flex: 0 0 auto; padding: 6px 10px; border: 1px solid rgba(255,255,255,.28); font-size: 11px; font-weight: 900; letter-spacing: .05em; }
.tf-panel-positions-list { border: 1px solid var(--tf-border); border-top: 0; background: #fff; }
.tf-panel-position-card {
    display: grid;
    grid-template-columns: 112px minmax(0,1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--tf-border);
    background: #fff;
}
.tf-panel-position-card:last-child { border-bottom: 0; }
.tf-panel-position-preview {
    width: 112px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--tf-soft-light);
    border: 1px solid var(--tf-border);
}
.tf-panel-position-preview img { width: 100%; height: 100%; object-fit: contain; transition: transform .2s ease; }
.tf-panel-position-preview > span { color: var(--tf-deep-blue); font-size: 24px; font-weight: 900; }
.tf-panel-position-info { min-width: 0; }
.tf-panel-position-eyebrow { display: block; margin-bottom: 3px; color: var(--tf-red); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.tf-panel-position-info strong { display: block; color: var(--tf-deep-blue); font-size: 16px; line-height: 1.25; }
.tf-panel-position-info > span:not(.tf-panel-position-eyebrow) { display: block; margin-top: 3px; color: var(--tf-steel-grey); font-size: 12px; line-height: 1.4; }
.tf-panel-position-info small { display: block; margin-top: 7px; color: var(--tf-dark-slate); font-size: 10px; font-weight: 900; letter-spacing: .035em; }
.tf-panel-position-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-width: 244px; }
#tf-plugin-wrapper .tf-panel-position-btn {
    min-height: 42px;
    padding: 9px 12px !important;
    border-radius: 2px !important;
    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .035em;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: none !important;
}
#tf-plugin-wrapper .tf-panel-position-btn.is-select { border: 1px solid var(--tf-red) !important; background: var(--tf-red) !important; color: #fff !important; }
#tf-plugin-wrapper .tf-panel-position-btn.is-rotate { border: 1px solid var(--tf-deep-blue) !important; background: #fff !important; color: var(--tf-deep-blue) !important; }
#tf-plugin-wrapper .tf-panel-position-btn:hover { transform: translateY(-1px); }

html.tf-panel-picker-open, body.tf-panel-picker-open { overflow: hidden !important; }
.tf-panel-picker { position: fixed; inset: 0; z-index: 2147483630; display: none; align-items: center; justify-content: center; padding: 22px; font-family: Arial,Helvetica,sans-serif; box-sizing: border-box; }
.tf-panel-picker.is-open { display: flex; }
.tf-panel-picker-backdrop { position: absolute; inset: 0; background: rgba(31,42,55,.78); backdrop-filter: blur(3px); }
.tf-panel-picker-dialog { position: relative; z-index: 1; width: min(1180px,100%); max-height: calc(100vh - 44px); overflow: auto; background: #fff; border: 1px solid #dfe4e9; border-top: 5px solid #b23434; box-shadow: 0 28px 85px rgba(0,0,0,.36); }
.tf-panel-picker-head { position: sticky; top: 0; z-index: 4; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 26px 30px 20px; background: #fff; border-bottom: 1px solid #e3e6ea; }
.tf-panel-picker-eyebrow { display: block; color: #b23434; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.tf-panel-picker-head h3 { margin: 5px 0 5px !important; color: #2f4a68 !important; font-size: clamp(24px,3vw,34px) !important; font-weight: 900 !important; line-height: 1.1 !important; }
.tf-panel-picker-head p { margin: 0 !important; color: #5f6874 !important; font-size: 13px !important; }
.tf-panel-picker-close { flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid #d5dbe1; background: #fff; color: #2f3742; font-size: 28px; line-height: 1; cursor: pointer; }
.tf-panel-picker-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; padding: 26px 30px; background: #f6f7f9; }
.tf-panel-picker-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 0 0 18px; overflow: hidden; text-align: left; border: 1px solid #dce1e6; border-top: 4px solid #2f4a68; border-radius: 2px; background: #fff; color: #2f3742; cursor: pointer; box-shadow: 0 8px 24px rgba(47,55,66,.06); transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.tf-panel-picker-card:hover, .tf-panel-picker-card:focus { transform: translateY(-2px); border-color: #b23434; box-shadow: 0 14px 34px rgba(47,55,66,.13); outline: none; }
.tf-panel-picker-card.is-active { border-color: #b23434; border-top-color: #b23434; box-shadow: inset 0 0 0 2px #b23434,0 10px 28px rgba(47,55,66,.1); }
.tf-panel-picker-image { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 16/8.5; padding: 10px; background: #fff; border-bottom: 1px solid #e3e6ea; box-sizing: border-box; }
.tf-panel-picker-image img { width: 100%; height: 100%; object-fit: contain; }
.tf-panel-picker-card-code { margin: 17px 18px 4px; color: #b23434; font-size: 10px; font-weight: 900; letter-spacing: .075em; }
.tf-panel-picker-card strong { margin: 0 18px; color: #2f4a68; font-size: 18px; line-height: 1.25; }
.tf-panel-picker-card-desc { flex: 1; margin: 8px 18px 15px; color: #5f6874; font-size: 13px; line-height: 1.55; }
.tf-panel-picker-card-choice { margin: 0 18px; padding-top: 12px; border-top: 1px solid #e3e6ea; color: #2f3742; font-size: 10px; font-weight: 900; letter-spacing: .05em; }
.tf-panel-picker-card.is-active .tf-panel-picker-card-choice { color: #b23434; }
.tf-panel-picker-foot { position: sticky; bottom: 0; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 30px; background: #fff; border-top: 1px solid #e3e6ea; }
.tf-panel-picker-foot p { margin: 0; color: #5f6874; font-size: 12px; line-height: 1.5; }
.tf-panel-picker-cancel { flex: 0 0 auto; min-width: 180px; min-height: 50px; margin:0; padding: 11px 24px; border: 2px solid #2f4a68; border-radius:0!important; background: #fff; color: #2f4a68; font-size: 11px; font-weight: 900; text-transform:uppercase; box-shadow:none!important; cursor: pointer; }

@media (max-width: 860px) {
    .tf-panel-position-card { grid-template-columns: 86px minmax(0,1fr); }
    .tf-panel-position-preview { width: 86px; height: 66px; }
    .tf-panel-position-actions { grid-column: 1 / -1; min-width: 0; }
}
@media (max-width: 640px) {
    .tf-panel-positions-head { align-items: flex-start; padding: 14px; }
    .tf-panel-positions-head span:not(.tf-panel-positions-count) { display: none; }
    .tf-panel-position-card { grid-template-columns: 72px minmax(0,1fr); gap: 12px; padding: 14px; }
    .tf-panel-position-preview { width: 72px; height: 58px; }
    .tf-panel-position-info strong { font-size: 14px; }
    .tf-panel-position-actions { grid-template-columns: 1fr 1fr; gap: 7px; }
    #tf-plugin-wrapper .tf-panel-position-btn { padding: 8px 6px !important; font-size: 10px !important; }
    .tf-panel-picker { padding: 0; align-items: stretch; }
    .tf-panel-picker-dialog { width: 100%; max-height: 100vh; height: 100vh; border-left: 0; border-right: 0; border-bottom: 0; }
    .tf-panel-picker-head { padding: 20px 16px 15px; }
    .tf-panel-picker-head h3 { font-size: 24px !important; }
    .tf-panel-picker-grid { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
    .tf-panel-picker-foot { padding: 14px 16px; align-items: stretch; flex-direction: column; gap: 10px; }
    .tf-panel-picker-cancel { width: 100%; }
}


/* =====================================================
   TF — LICZNIK MODUŁÓW + KATALOG V1–V8 (V3.2.13)
===================================================== */
.tf-module-stepper {
    display: grid;
    grid-template-columns: 48px minmax(90px, 1fr) 48px;
    align-items: stretch;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid var(--tf-border);
    background: var(--pure-white);
    box-sizing: border-box;
}
#tf-plugin-wrapper .tf-module-stepper-btn,
.tf-module-stepper-btn {
    min-height: 46px;
    border: 0 !important;
    border-radius: 0 !important;
    background: var(--tf-soft-light) !important;
    color: var(--tf-deep-blue) !important;
    font: 900 24px/1 Arial, sans-serif !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: .18s ease;
}
#tf-plugin-wrapper .tf-module-stepper-btn:first-child,
.tf-module-stepper-btn:first-child { border-right: 1px solid var(--tf-border) !important; }
#tf-plugin-wrapper .tf-module-stepper-btn:last-child,
.tf-module-stepper-btn:last-child { border-left: 1px solid var(--tf-border) !important; }
#tf-plugin-wrapper .tf-module-stepper-btn:hover,
.tf-module-stepper-btn:hover { background: var(--tf-deep-blue) !important; color: #fff !important; }
#tf-plugin-wrapper .tf-module-stepper-input,
.tf-module-stepper-input {
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    text-align: center;
    font-size: 17px !important;
    font-weight: 900 !important;
    color: var(--tf-dark-slate) !important;
    background: #fff !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
}
.tf-module-stepper-input::-webkit-outer-spin-button,
.tf-module-stepper-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tf-panel-picker-card[data-panel-variant="V5"],
.tf-panel-picker-card[data-panel-variant="V6"],
.tf-panel-picker-card[data-panel-variant="V7"],
.tf-panel-picker-card[data-panel-variant="V8"] { border-top-color: var(--tf-red); }
.tf-panel-picker-card[data-panel-variant="V5"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V6"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V7"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V8"] .tf-panel-picker-image { background: #f7f8fa; }

/* =====================================================
   TF GENERATOR 3.2.13 — STATUS PRODUKTU
===================================================== */
.tf-panel-picker-image {
    position: relative;
    aspect-ratio: auto;
    min-height: 440px;
    padding: 18px;
    background: #f7f8fa;
}
.tf-panel-picker-image img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}
.tf-panel-picker-stock,
.tf-panel-position-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 9px;
    font-size: 9px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
}
.tf-panel-picker-stock {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    box-sizing: border-box;
}
.tf-panel-position-status { margin-top: 8px; }
.tf-panel-picker-stock.is-unavailable,
.tf-panel-position-status.is-unavailable { background: var(--tf-red); color: #fff; }
.tf-panel-picker-stock.is-unsynced,
.tf-panel-position-status.is-unsynced { background: #9a6a13; color: #fff; }
.tf-panel-picker-stock.is-unknown,
.tf-panel-position-status.is-unknown { background: var(--tf-steel-grey); color: #fff; }
.tf-panel-picker-card.is-unavailable {
    cursor: not-allowed;
    border-color: var(--tf-red);
    box-shadow: none;
}
.tf-panel-picker-card.is-unavailable .tf-panel-picker-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(178,52,52,.28);
    pointer-events: none;
}
.tf-panel-picker-card.is-unavailable .tf-panel-picker-image img { filter: grayscale(.35); opacity: .72; }
.tf-panel-picker-card.is-unavailable:hover,
.tf-panel-picker-card.is-unavailable:focus { transform: none; box-shadow: none; border-color: var(--tf-red); }
.tf-panel-picker-card.is-unavailable .tf-panel-picker-card-choice { color: var(--tf-red); }
.tf-panel-picker-card.is-unsynced { border-top-color: #9a6a13; }
.tf-panel-position-card.is-unavailable { border-left: 4px solid var(--tf-red); background: #fff8f8; }
.tf-panel-position-card.is-unsynced { border-left: 4px solid #9a6a13; }
.tf-panel-picker-card-code { font-size: 11px; }

@media (max-width: 640px) {
    .tf-panel-picker-image { min-height: 410px; padding: 14px; }
    .tf-panel-picker-image img { max-height: 480px; }
    .tf-panel-picker-stock { top: 14px; left: 14px; max-width: calc(100% - 28px); }
}


/* =====================================================
   TF GENERATOR 3.2.13 — JEDNOLITE PIONOWE PODGLĄDY BLATÓW
===================================================== */
.tf-panel-picker-image {
    position: relative;
    min-height: 520px;
    padding: 18px;
    background: #f7f8fa;
}
.tf-panel-picker-image img {
    display: block;
    width: min(100%, 360px);
    height: 500px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
}
.tf-panel-position-preview {
    width: 88px;
    height: 126px;
}
.tf-panel-position-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 860px) {
    .tf-panel-position-card { grid-template-columns: 80px minmax(0,1fr); }
    .tf-panel-position-preview { width: 80px; height: 114px; }
}
@media (max-width: 640px) {
    .tf-panel-position-card { grid-template-columns: 72px minmax(0,1fr); }
    .tf-panel-position-preview { width: 72px; height: 102px; }
    .tf-panel-picker-image { min-height: 470px; padding: 14px; }
    .tf-panel-picker-image img { width: min(100%, 330px); height: 450px; }
}

/* =====================================================
   TF GENERATOR 3.2.16 — KOMPAKTOWY WYBÓR BLATÓW
===================================================== */
.tf-panel-positions-head {
    padding: 13px 16px;
    background: #eef1f4;
    color: var(--tf-dark-slate);
    border: 1px solid var(--tf-border);
    border-left: 4px solid var(--tf-red);
}
.tf-panel-positions-head strong {
    color: var(--tf-dark-slate);
    font-size: 12px;
    letter-spacing: .045em;
}
.tf-panel-positions-head span:not(.tf-panel-positions-count) {
    margin-top: 2px;
    color: var(--tf-steel-grey);
    font-size: 11px;
}
.tf-panel-positions-count {
    padding: 5px 9px;
    border: 1px solid #cfd5dc;
    background: #fff;
    color: var(--tf-deep-blue);
    font-size: 10px;
}
.tf-panel-positions-list {
    border-top: 0;
}
.tf-panel-position-card,
.tf-panel-position-card.is-unavailable,
.tf-panel-position-card.is-unsynced {
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    grid-template-areas:
        "heading heading"
        "preview actions";
    align-items: center;
    gap: 11px 14px;
    padding: 13px 16px;
    border-left: 0;
    background: #fff;
}
.tf-panel-position-heading {
    grid-area: heading;
    min-width: 0;
}
.tf-panel-position-eyebrow {
    margin: 0 0 2px;
    font-size: 9px;
    line-height: 1.25;
}
.tf-panel-position-heading strong {
    display: block;
    color: var(--tf-deep-blue);
    font-size: 15px;
    line-height: 1.22;
}
.tf-panel-position-preview {
    grid-area: preview;
    width: 82px;
    height: 110px;
    background: var(--tf-soft-light);
}
.tf-panel-position-actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
    min-width: 0;
    width: 100%;
}
#tf-plugin-wrapper .tf-panel-position-btn {
    min-height: 40px;
    padding: 8px 8px !important;
    font-size: 10px !important;
}

/* Okno wyboru: trzy czytelne karty w rzędzie. */
.tf-panel-picker-dialog {
    width: min(1360px,100%);
}
.tf-panel-picker-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--tf-red);
    border-radius: 2px;
    background: var(--tf-red);
    color: #fff;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
    box-shadow: none;
}
.tf-panel-picker-close:hover,
.tf-panel-picker-close:focus {
    background: #922a2a;
    border-color: #922a2a;
    color: #fff;
    outline: none;
}
.tf-panel-picker-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    align-items: stretch;
    gap: 16px;
    padding: 22px 24px;
}
.tf-panel-picker-card {
    height: auto;
    padding-bottom: 15px;
}
.tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V5"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V6"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V7"] .tf-panel-picker-image,
.tf-panel-picker-card[data-panel-variant="V8"] .tf-panel-picker-image {
    min-height: 245px;
    height: 245px;
    padding: 12px;
    background: #f7f8fa;
}
.tf-panel-picker-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
}
.tf-panel-picker-card-code {
    margin: 14px 15px 4px;
    font-size: 9px;
}
.tf-panel-picker-card strong {
    margin: 0 15px;
    font-size: 16px;
    line-height: 1.22;
}
.tf-panel-picker-card-desc {
    margin: 7px 15px 12px;
    font-size: 12px;
    line-height: 1.45;
}
.tf-panel-picker-card-choice {
    margin: 0 15px;
    padding-top: 10px;
    font-size: 9px;
}
.tf-panel-picker-stock {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
}

@media (max-width: 1040px) {
    .tf-panel-picker-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .tf-panel-positions-head { padding: 12px 13px; }
    .tf-panel-position-card,
    .tf-panel-position-card.is-unavailable,
    .tf-panel-position-card.is-unsynced {
        grid-template-columns: 70px minmax(0,1fr);
        gap: 9px 11px;
        padding: 12px 13px;
    }
    .tf-panel-position-heading strong { font-size: 14px; }
    .tf-panel-position-preview { width: 70px; height: 96px; }
    .tf-panel-position-actions { gap: 6px; }
    #tf-plugin-wrapper .tf-panel-position-btn {
        min-height: 38px;
        padding: 7px 5px !important;
        font-size: 9px !important;
    }
    .tf-panel-picker-head { padding: 17px 14px 14px; gap: 12px; }
    .tf-panel-picker-close { width: 42px; height: 42px; font-size: 29px; }
    .tf-panel-picker-grid { grid-template-columns: 1fr; gap: 13px; padding: 14px; }
    .tf-panel-picker-image,
    .tf-panel-picker-card[data-panel-variant="V5"] .tf-panel-picker-image,
    .tf-panel-picker-card[data-panel-variant="V6"] .tf-panel-picker-image,
    .tf-panel-picker-card[data-panel-variant="V7"] .tf-panel-picker-image,
    .tf-panel-picker-card[data-panel-variant="V8"] .tf-panel-picker-image {
        min-height: 290px;
        height: 290px;
        padding: 12px;
    }
    .tf-panel-picker-card-code { margin-top: 13px; }
}

/* =====================================================
   TF GENERATOR 3.2.23 — KAFELKI OPCJI RAMY + NIEBIESKI STAN WYBORU
===================================================== */
#tf-plugin-wrapper .tf-radio-tile input[type="radio"]:checked + label,
.tf-radio-tile input[type="radio"]:checked + label {
    border-color: var(--tf-deep-blue) !important;
    background: #f1f3f5 !important;
    color: var(--tf-deep-blue) !important;
    box-shadow: inset 0 0 0 2px var(--tf-deep-blue) !important;
}
#tf-plugin-wrapper .tf-radio-tile label:hover,
.tf-radio-tile label:hover {
    border-color: var(--tf-deep-blue);
    background: #f6f7f8;
}
#tf-plugin-wrapper .tf-radio-tile input[type="radio"]:checked + label:hover,
.tf-radio-tile input[type="radio"]:checked + label:hover {
    background: #e9edf1 !important;
    color: var(--tf-deep-blue) !important;
}
.tf-frame-source-control { display: none !important; }
.tf-frame-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.tf-frame-option-group {
    min-width: 0;
    padding: 15px;
    border: 1px solid var(--tf-border);
    background: var(--tf-soft-light, var(--tf-gray));
}
.tf-frame-option-title {
    margin: 0 0 10px !important;
    color: var(--tf-dark-slate) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .045em !important;
}
.tf-frame-option-tiles {
    margin: 0 !important;
    gap: 10px !important;
}
.tf-frame-option-tiles .tf-radio-tile label {
    min-height: 52px;
    padding: 11px 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .025em;
}
#tf-plugin-wrapper .tf-panel-picker-card.is-active,
.tf-panel-picker-card.is-active {
    border-color: var(--tf-deep-blue) !important;
    border-top-color: var(--tf-deep-blue) !important;
    box-shadow: inset 0 0 0 2px var(--tf-deep-blue), 0 10px 28px rgba(47,55,66,.1) !important;
}
#tf-plugin-wrapper .tf-panel-picker-card.is-active .tf-panel-picker-card-choice,
.tf-panel-picker-card.is-active .tf-panel-picker-card-choice {
    color: var(--tf-deep-blue) !important;
}
@media (min-width: 1180px) {
    .tf-frame-options-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .tf-frame-option-tiles { grid-template-columns: 1fr !important; }
}



/* =====================================================
   TF GENERATOR 3.2.23 — DELIKATNY WYBÓR + LICZNIKI WARTOŚCI
===================================================== */
.tf-value-stepper {
    display: grid;
    grid-template-columns: 44px minmax(70px, 1fr) 44px;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--tf-border);
    background: var(--pure-white);
    box-sizing: border-box;
}
.tf-value-stepper--compact { width: min(100%, 240px); margin: 0 auto; }
#tf-plugin-wrapper .tf-value-stepper-btn,
.tf-value-stepper-btn {
    min-height: 46px; margin: 0 !important; padding: 0 !important;
    border: 0 !important; border-radius: 0 !important;
    background: var(--tf-soft-light) !important; color: var(--tf-deep-blue) !important;
    font: 900 23px/1 Arial, sans-serif !important; box-shadow: none !important;
    cursor: pointer; transition: .18s ease;
}
#tf-plugin-wrapper .tf-value-stepper-btn:first-child,
.tf-value-stepper-btn:first-child { border-right: 1px solid var(--tf-border) !important; }
#tf-plugin-wrapper .tf-value-stepper-btn:last-child,
.tf-value-stepper-btn:last-child { border-left: 1px solid var(--tf-border) !important; }
#tf-plugin-wrapper .tf-value-stepper-btn:hover,
#tf-plugin-wrapper .tf-value-stepper-btn:focus,
.tf-value-stepper-btn:hover,
.tf-value-stepper-btn:focus { background: var(--tf-deep-blue) !important; color: #fff !important; outline: none; }
#tf-plugin-wrapper .tf-value-stepper-input,
.tf-value-stepper-input {
    width: 100% !important; min-width: 0 !important; min-height: 46px !important;
    margin: 0 !important; padding: 8px !important; border: 0 !important; border-radius: 0 !important;
    background: #fff !important; color: var(--tf-dark-slate) !important; text-align: center;
    font-size: 16px !important; font-weight: 900 !important; box-shadow: none !important;
    -moz-appearance: textfield;
}
.tf-value-stepper-input::-webkit-outer-spin-button,
.tf-value-stepper-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tf-overhang-values .tf-value-stepper { margin-bottom: 0; }


/* =====================================================
   TF GENERATOR 0.2.67 — RÓWNE KOLUMNY + PRZYCISKI JAK AUTO/RĘCZNIE
===================================================== */
.tf-config-main-grid { align-items: stretch !important; }
.tf-config-main-grid > .tf-card { height:100% !important; margin-bottom:0 !important; box-sizing:border-box !important; }
#tf-plugin-wrapper .tf-panel-position-actions { display:flex !important; gap:0 !important; min-height:48px !important; overflow:hidden !important; border:1px solid var(--tf-border) !important; background:var(--tf-gray) !important; }
#tf-plugin-wrapper .tf-panel-position-btn { flex:1 1 50% !important; min-width:0 !important; min-height:48px !important; margin:0 !important; padding:10px 12px !important; border:0 !important; border-radius:0 !important; font-family:inherit !important; font-size:13px !important; line-height:1.2 !important; font-weight:700 !important; letter-spacing:0 !important; text-transform:uppercase !important; box-shadow:none !important; transform:none !important; }
#tf-plugin-wrapper .tf-panel-position-btn.is-select { background:var(--tf-deep-blue) !important; color:#fff !important; }
#tf-plugin-wrapper .tf-panel-position-btn.is-rotate { background:#fff !important; color:var(--tf-dark-slate) !important; border-left:1px solid var(--tf-border) !important; }
#tf-plugin-wrapper .tf-panel-position-btn.is-select:hover,#tf-plugin-wrapper .tf-panel-position-btn.is-select:focus { background:#243447 !important; color:#fff !important; outline:none !important; }
#tf-plugin-wrapper .tf-panel-position-btn.is-rotate:hover,#tf-plugin-wrapper .tf-panel-position-btn.is-rotate:focus { background:var(--tf-gray) !important; color:var(--tf-dark-slate) !important; outline:none !important; }
#tf-plugin-wrapper .tf-overhang-panel-recommendation-btn { width:min(285px,100%) !important; min-height:48px !important; margin:0 !important; padding:10px 16px !important; border:1px solid var(--tf-deep-blue) !important; border-radius:0 !important; background:var(--tf-deep-blue) !important; color:#fff !important; font-family:inherit !important; font-size:13px !important; line-height:1.2 !important; font-weight:700 !important; letter-spacing:0 !important; text-transform:uppercase !important; box-shadow:none !important; }
#tf-plugin-wrapper .tf-overhang-panel-recommendation-btn:hover,#tf-plugin-wrapper .tf-overhang-panel-recommendation-btn:focus { background:#243447 !important; border-color:#243447 !important; color:#fff !important; outline:none !important; }
@media (max-width:1024px){ .tf-config-main-grid > .tf-card { height:auto !important; } }

/* =====================================================
   BLATY v0.1.2 — źródła blatów / Generator Blatów
===================================================== */
.tf-panel-source-tabs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;width:100%;padding:18px 30px;background:#fff;border-bottom:1px solid #e3e6ea;position:sticky;top:109px;z-index:3;box-sizing:border-box}
.tf-panel-source-tab{display:flex;align-items:center;justify-content:center;width:100%;min-width:0;min-height:52px;margin:0;padding:12px 14px;border:2px solid #2f4a68!important;border-radius:0!important;background:#fff;color:#2f4a68;font-family:inherit;font-size:11px;font-weight:900;line-height:1.2;letter-spacing:.04em;text-align:center;text-transform:uppercase;box-shadow:none!important;cursor:pointer;transition:background .15s ease,border-color .15s ease,color .15s ease}
.tf-panel-source-tab:hover,.tf-panel-source-tab:focus{background:#eef3f7;color:#2f4a68;outline:none}
.tf-panel-source-tab.is-active,.tf-panel-source-tab.is-active:hover,.tf-panel-source-tab.is-active:focus{background:#2f4a68;color:#fff;border-color:#2f4a68!important}
.tf-panel-picker-grid.is-single-source{grid-template-columns:1fr}
.tf-panel-source-message,.tf-panel-generator-entry{grid-column:1/-1;background:#fff;border:1px solid #dce1e6;border-left:4px solid #2f4a68;padding:28px;color:#2f3742}
.tf-panel-source-message strong,.tf-panel-generator-entry strong{display:block;color:#2f4a68;font-size:19px;font-weight:900;margin-bottom:8px}
.tf-panel-source-message p,.tf-panel-generator-entry p{margin:0;color:#5f6874;font-size:14px;line-height:1.6}
.tf-panel-source-message.is-error{border-left-color:#b23434}
.tf-panel-generator-entry{display:flex;align-items:flex-start;gap:22px}
.tf-panel-generator-icon{flex:0 0 58px;width:58px;height:58px;display:flex;align-items:center;justify-content:center;background:#2f4a68;color:#fff;font-size:28px;font-weight:900}
.tf-panel-generator-open{display:inline-flex;margin-top:20px;min-height:44px;padding:10px 18px;align-items:center;justify-content:center;background:#b23434;color:#fff!important;text-decoration:none!important;font-size:11px;font-weight:900;letter-spacing:.04em}
.tf-panel-picker-image-custom svg,.tf-panel-position-card.is-custom-top .tf-panel-position-preview svg{width:100%;height:100%;max-height:220px;object-fit:contain}
.tf-panel-position-card.is-custom-top{border-top-color:#b23434}
.tf-panel-saved-card .tf-panel-picker-card-code{color:#2f4a68}
.tf-custom-top-cart-note{margin:12px 0;padding:15px 18px;border:1px solid #e3e6ea;border-left:4px solid #b23434;background:#fff;display:flex;flex-direction:column;gap:5px}
.tf-custom-top-cart-note strong{color:#b23434;font-size:12px;font-weight:900}
.tf-custom-top-cart-note span{color:#5f6874;font-size:12px;line-height:1.5}
@media(max-width:760px){.tf-panel-source-tabs{top:91px;grid-template-columns:1fr;padding:12px 16px;gap:8px}.tf-panel-source-tab{width:100%;min-height:50px}.tf-panel-generator-entry{padding:20px;gap:14px}.tf-panel-generator-icon{width:44px;height:44px;flex-basis:44px;font-size:22px}}
.tf-panel-generator-open{border:0;border-radius:0;cursor:pointer;font-family:inherit}
.tf-panel-generator-open:disabled{opacity:.65;cursor:wait}
.tf-panel-generator-status{min-height:18px;margin-top:10px;color:#5f6874;font-size:12px;line-height:1.45}
