/* Overlay */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Półprzezroczyste ciemne tło */
    z-index: 999; /* Pod popupem */
}

/* Popup */
#exit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #fff; /* Ciemne tło */
    color: #616161; /* Jasny kolor tekstu */
    border: 1px solid #444; /* Kolor obramowania */
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Zwiększenie cienia */
    z-index: 1000; /* Nad overlay */
    border-radius: 5px;
}

#exit-popup label {
    display: block;
    margin: 10px 0;
    color: #616161 /* Jasny kolor tekstu */
}

@media only screen and (max-device-width: 480px) {
    #exit-popup label {
        display: block;
        margin: 7px 0;
        font-size: 14px;
        color: #616161; /* Jasny kolor tekstu */
    }
}

#exit-popup input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #e3032d;
}

#exit-popup .popup-button {
    margin-top: 20px;
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #e3032d;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

@media only screen and (max-device-width: 480px) {
    #exit-popup .popup-button {
        margin-top: 20px;
        display: inline-block;
        margin-right: 10px;
        padding: 3px 9px;
        background-color: #e3032d;
        color: #616161;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }
}

#exit-popup .popup-button:hover {
    background-color: #bd0326;
}

#popup-message {
    margin-top: 10px;
    color: green;
}

#popup-thank-you {
    text-align: center;
    font-size: 1.2em;
    color: green;
}

.popup-check-icon {
    font-size: 2em;
    color: green;
    vertical-align: middle;
    margin-right: 10px;
}

.exit-popup-form {
    margin: 38px;
}

@media only screen and (max-device-width: 480px) {
    .exit-popup-form {
        margin: 1px;
    }
}

@media only screen and (max-device-width: 480px) {
    .h2 {
        font-size: 15px;
    }
}
