<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.jscalc_container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-family: Roboto, Geneva, Verdana, sans-serif;
    color: #333;
}

.jscalc_container select {
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 300px;
    margin-bottom: 20px;
    max-height: 50px;
    padding: 4px 10px;
}
.jscalc_container select:focus {
    border-color: #ccc;
    outline: none;
}

.jscalc_container textarea,
.jscalc_container input[type="number"] {
    font-size: 14px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.jscalc_container input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}
.jscalc_container input[type="checkbox"]::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    transition: left 0.3s;
}
.jscalc_container input[type="checkbox"]:checked {
    background-color: #28a745;
}
.jscalc_container input[type="checkbox"]:checked::after {
    left: 32px;
}

.jscalc_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    display: block;
    overflow-x: auto;
    border: 0 solid #e0e0e0;
}
.jscalc_table th,
.jscalc_table td {
    border: none;
    padding: 12px 15px;
    text-align: center;
}
.jscalc_table th {
    background-color: #f8f8f8;
    font-weight: 600;
}
.jscalc_table td {
    background-color: #fff;
}

button {
    margin: 4px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.6s, transform 0.6s;
}
button:focus {
    outline: none;
}
button:hover {
}

.jscalc_remove {
    background-color: #dc3545;
    color: #fff;
}
.jscalc_add {
    background-color: #28a745;
    color: #fff;
}
.jscalc_remove, .jscalc_add {
    padding: 12px;
    padding-left: 18px;
    padding-right: 18px;
}

.jscalc_increment,
.jscalc_decrement {
    background-color: #ccc;
    color: #000;
    width: 25px;
    height: 25px;
    padding: 0;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
    margin: 5px;
}

.jscalc_toggle_row {
    margin-bottom: 15px;
}
.jscalc_container .jscalc_toggle_row label input {
    margin-right: 15px;
}
.jscalc_container label {
    display: flex;
    align-items: center;
}
div[id^="jscalc_totalPrice_"] {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #000;
    text-align: right;
}
input.jscalc_count {
    max-width: 50px !important;
}
input.jscalc_width,
input.jscalc_height {
    max-width: 100px !important;
}

.jscalc_container .jscalc_table input,
#jscalc_lead_form input {
    max-height: 44px;
    padding: 4px;
}

.jscalc_lead_form_box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.jscalc_lead_form_wrapper {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    max-width: 50%;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
.jscalc_lead_form_wrapper h2 {
    font-size: 1.3em;
    margin-bottom: 0px;
}
.jscalc_lead_form_wrapper h3 {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.jscalc_lead_form_wrapper form {
    max-width: 600px;
    margin: 0 auto;
}
.jscalc_lead_form_wrapper .form-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.jscalc_lead_form_wrapper input,
.jscalc_lead_form_wrapper textarea {
    padding: 10px !important;
    font-size: 16px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.jscalc_lead_form_wrapper button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}
.jscalc_lead_form_wrapper button:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .jscalc_container {
        padding: 10px;
        margin: 10px;
    }
    .jscalc_container select {
        max-width: none;
    }
    .jscalc_table th,
    .jscalc_table td {
        padding: 10px;
        font-size: 13px;
    }
    button {
        padding: 3px 6px;
        font-size: 6px;
    }
    .jscalc_count,
    .jscalc_width,
    .jscalc_height {
        width: 80px;
        max-width: 80px;
    }
    .jscalc_container .jscalc_table input,
    #jscalc_lead_form input {
        min-width: 60px;
    }
    .jscalc_lead_form_wrapper {
        max-width: none;
    }
    .jscalc_lead_form_wrapper .form-row {
        display: block;
        margin: 0;
    }
    .jscalc_lead_form_wrapper .form-row input {
        margin-bottom: 15px;
    }
}

/* === DoplnÄ›nĂ© styly pro JS Calc v2.3 === */

/* ZvĂ˝raznÄ›nĂ­ Ĺ™Ăˇdku s aplikovanou minimĂˇlnĂ­ cenou */
.jscalc_table tbody tr.jscalc-min-price-row td {
    background-color: #fff3cd; /* SvÄ›tle ĹľlutĂˇ - bootstrap 'alert-warning' background */
    /* MĹŻĹľete pĹ™idat i border nebo jinĂ˝ styl pro vÄ›tĹˇĂ­ zvĂ˝raznÄ›nĂ­ */
    /* border-bottom: 1px solid #ffeeba; */
}

/* Styl pro informaÄŤnĂ­ hlĂˇĹˇku o minimĂˇlnĂ­ cenÄ› */
.jscalc_min_price_info {
    display: none; /* Skryto defaultnÄ›, JS Ĺ™Ă­dĂ­ zobrazenĂ­ */
    margin-top: 15px;
    margin-bottom: 10px; /* OdsazenĂ­ od celkovĂ© ceny */
    padding: 10px 15px;
    background-color: #fff3cd; /* SvÄ›tle ĹˇedĂˇ - bootstrap 'alert-secondary' background */
    border: 1px solid #d6d8db; /* SvÄ›tle ĹˇedĂ˝ okraj */
    border-radius: 4px;
    color: #383d41; /* TmavÄ› ĹˇedĂ˝ text */
    font-size: 0.9em;
    text-align: center;
}



/* ZlepĹˇenĂ­ ÄŤitelnosti Admin Meta Boxu */
#jscalc_calculation_meta_box label {
    font-weight: bold;
    margin-bottom: 3px;
    display: inline-block;
}
#jscalc_calculation_meta_box p {
    margin-bottom: 12px;
}
#jscalc_calculation_meta_box hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #ddd;
}
#jscalc_calculation_meta_box ul {
    margin-top: 5px;
    margin-bottom: 10px;
    padding-left: 0;
    list-style: none;
}
#jscalc_calculation_meta_box li {
    margin-bottom: 4px;
    font-size: 0.95em;
}
#jscalc_calculation_meta_box table th,
#jscalc_calculation_meta_box table td {
    padding: 8px;
    text-align: right;
    border: 1px solid #ddd;
    vertical-align: top;
}
#jscalc_calculation_meta_box table th {
    text-align: center;
    background-color: #f8f9fa;
}
#jscalc_calculation_meta_box table td:first-child,
#jscalc_calculation_meta_box table th:first-child {
    text-align: center; /* PrvnĂ­ sloupec (index) zarovnat na stĹ™ed */
}
#jscalc_calculation_meta_box table tfoot td {
    font-weight: bold;
    background-color: #f0f0f0;
}
#jscalc_calculation_meta_box input[readonly],
#jscalc_calculation_meta_box textarea[readonly] { /* Pokud by byla readonly textarea */
    background-color: #e9ecef; /* SvÄ›tlejĹˇĂ­ ĹˇedĂˇ pro readonly */
    cursor: not-allowed;
}</pre></body></html>