#pergolaWizualizacjaSVG{
    width: 65%;
    height: auto;
}

.pergola-wrap {
    position: relative;
    font-weight: bold;
    margin: 0 auto;
    width: fit-content;
}

.pergola-odplyw-svg, .pergola-korona-led-svg, .pergola-lamele-led-svg {
    border: 1px solid #ccc;
    display: block;
    background-color: #f4f4f4;
    border: 1.5px solid #54595f;
    border-radius: 8px;
    color: #54595f;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.pergola-odplyw-checkbox, .pergola-korona-led-checkbox, .pergola-lamele-led-checkbox {
    position: absolute;
}

.pergola-odplyw-checkbox input[type="checkbox"], .pergola-korona-led-checkbox input[type="checkbox"], .pergola-lamele-led-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 3px;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: border-color 0.3s, background-color 0.3s;
}

.pergola-odplyw-checkbox input[type="checkbox"]:checked, .pergola-korona-led-checkbox input[type="checkbox"]:checked, .pergola-lamele-led-checkbox input[type="checkbox"]:checked {
    border-color: blue;
    background-color: lightblue;
}

.pergola-odplyw-checkbox input[type="checkbox"]::after, .pergola-korona-led-checkbox input[type="checkbox"]::after, .pergola-lamele-led-checkbox input[type="checkbox"]::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 15px;
    color: blue;
    display: none;
}

.pergola-odplyw-checkbox input[type="checkbox"]::before, .pergola-korona-led-checkbox input[type="checkbox"]::before, .pergola-lamele-led-checkbox input[type="checkbox"]::before {
    content: '' !important;
}

.pergola-odplyw-checkbox input[type="checkbox"]:checked::after, .pergola-korona-led-checkbox input[type="checkbox"]:checked::after, .pergola-lamele-led-checkbox input[type="checkbox"]:checked::after {
    display: block;
}