/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 17 2025 | 15:34:15 */
/* style.css - Wzmocniona wersja dla motywu Blocky */

/* Resetowanie podstawowych stylów dla kontenera kalkulatora */
.calculator {
    all: unset !important; /* Resetuje wszystkie dziedziczone style */
    display: block !important; /* Zapewnia, że jest blokiem */
    font-family: 'Open Sans', sans-serif !important;
    background-color: #f7f7f7 !important;
    padding: 30px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    max-width: 800px !important;
    margin: 30px auto !important;
    color: #333 !important;
    box-sizing: border-box !important; /* Ważne dla paddingu i szerokości */
}

.calculator-header {
    text-align: center !important;
    margin-bottom: 25px !important;
    font-size: 2em !important;
    color: #1d3557 !important; /* Ciemny granat z palety Twojego motywu */
    line-height: 1.2 !important; /* Poprawia odstępy */
}

.calculator-section {
    margin-bottom: 25px !important;
    padding: 20px !important;
    background-color: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    box-sizing: border-box !important;
}

.calculator-section h3 {
    font-size: 1.5em !important;
    margin-top: 0 !important; /* Upewniamy się, że nagłówek nie ma górnego marginesu od motywu */
    margin-bottom: 15px !important;
    color: #1d3557 !important;
    border-bottom: 2px solid #a9d4b5 !important; /* Jasna zieleń z palety Twojego motywu */
    padding-bottom: 10px !important;
}

/* Input Range */
.input-group {
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
}

.input-group label {
    display: block !important;
    margin-bottom: 10px !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    color: #4b4b4b !important; /* Ciemny szary z palety Twojego motywu */
}

input[type="range"] {
    width: 100% !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    height: 8px !important;
    background: #ddd !important;
    outline: none !important;
    border-radius: 5px !important;
    margin: 10px 0 !important;
    padding: 0 !important; /* Usunięcie paddingu, który może wpływać na wygląd */
    box-shadow: none !important; /* Usunięcie cienia, jeśli motyw dodaje */
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    background: #1d3557 !important; /* Ciemny granat */
    border-radius: 50% !important;
    cursor: grab !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
}

input[type="range"]::-moz-range-thumb {
    width: 22px !important;
    height: 22px !important;
    background: #1d3557 !important; /* Ciemny granat */
    border-radius: 50% !important;
    cursor: grab !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
}

.char-count {
    font-weight: 700 !important;
    color: #6d6875 !important; /* Szary z palety Twojego motywu */
    font-size: 1.2em !important;
    text-align: center !important;
    margin-top: 10px !important;
    padding: 0 !important;
}

/* Service Options - kluczowe dla ułożenia obok siebie */
.service-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important; /* Odstępy między kafelkami */
    justify-content: center !important; /* Centrowanie kafelków */
    margin: 0 auto !important; /* Centrowanie samego kontenera flex */
    padding: 0 !important;
}

.service-option {
    background-color: #f0f0f0 !important; /* Jasny szary z palety Twojego motywu */
    border: 2px solid #e8e8e8 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    min-width: 150px !important; /* Minimalna szerokość dla kafelka */
    flex: 1 1 calc(33.33% - 20px) !important; /* 3 kolumny, z uwzględnieniem gap, dostosuje się */
    max-width: calc(33.33% - 20px) !important; /* Ograniczenie szerokości dla dużych ekranów */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* Rozkłada elementy w pionie */
    align-items: center !important;
    box-sizing: border-box !important; /* Ważne dla paddingu i szerokości */
    margin: 0 !important; /* Usuwamy potencjalne marginesy motywu */
}

.service-option.selected {
    border-color: #1d3557 !important; /* Ciemny granat */
    background-color: #e6f0ff !important; /* Bardzo jasny niebieski dla zaznaczenia */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.service-option h4 {
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    font-size: 1.1em !important;
    color: #1d3557 !important;
    line-height: 1.2 !important;
}

.service-option p {
    font-size: 0.9em !important;
    color: #6d6875 !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.service-option .price-per-char {
    font-weight: 700 !important;
    color: #2f4f4f !important; /* Ciemniejszy szary/zielony z palety */
    font-size: 1.2em !important;
    margin-top: auto !important; /* Wyrównuje cenę do dołu */
}

/* SVG Icons - to jest kluczowe dla rozmiaru */
.service-option svg {
    width: 50px !important;
    height: 50px !important;
    fill: #1d3557 !important; /* Kolor ikon - ciemny granat */
    margin-bottom: 10px !important;
    transition: fill 0.3s ease !important;
    display: block !important; /* Upewniamy się, że SVG jest traktowane jako blok */
}

.service-option.selected svg {
    fill: #0693e3 !important; /* Kolor ikon po zaznaczeniu - jaśniejszy niebieski */
}

/* Results Section */
.results {
    text-align: center !important;
    padding: 25px !important;
    background-color: #a9d4b5 !important; /* Jasna zieleń z palety Twojego motywu */
    border-radius: 10px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
}

.results h3 {
    font-size: 1.8em !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    color: #1d3557 !important;
    line-height: 1.2 !important;
}

.final-price {
    font-size: 2.5em !important;
    font-weight: 700 !important;
    color: #cf2e2e !important; /* Czerwony, aby wyróżnić cenę */
    margin-top: 15px !important;
    line-height: 1.2 !important;
}

.final-price span {
    font-size: 0.7em !important;
    font-weight: 400 !important;
    color: #4b4b4b !important;
}

/* Przyciski - "Zapisz wycenę" i "Resetuj" */
.calculator-buttons {
    text-align: center !important;
    margin-top: 30px !important;
}

.calculator-buttons button {
    background-color: #1d3557 !important; /* Ciemny granat */
    color: white !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-size: 1em !important;
    transition: background-color 0.3s ease !important;
    margin: 0 10px !important; /* Odstęp między przyciskami */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.calculator-buttons button:hover {
    background-color: #0693e3 !important; /* Jaśniejszy niebieski na hover */
}

/* Responsywność */
@media (max-width: 768px) {
    .calculator {
        padding: 20px !important;
        margin: 20px auto !important;
    }

    .service-options {
        flex-direction: column !important; /* Układanie opcji w kolumnie na mniejszych ekranach */
        width: 100% !important; /* Rozciągnij na całą szerokość */
        gap: 10px !important;
    }

    .service-option {
        width: auto !important; /* Pozwól im zająć dostępną szerokość */
        flex: 1 1 100% !important; /* Każdy kafelek zajmuje całą szerokość */
        max-width: 100% !important;
        padding: 15px !important;
    }

    .calculator-header {
        font-size: 1.8em !important;
    }

    .results h3 {
        font-size: 1.5em !important;
    }

    .final-price {
        font-size: 2em !important;
    }

    .calculator-buttons button {
        display: block !important; /* Przyciski jeden pod drugim */
        width: calc(100% - 20px) !important; /* Pełna szerokość minus padding/margin */
        margin: 10px auto !important; /* Centrowanie i odstęp */
    }
}