#clicklead-popup {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 340px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#clicklead-fullname,
#clicklead-phone {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
}

.popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.popup-buttons button {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
}

#clicklead-submit {
    background: #FF5A00;
    color: white;
}

#clicklead-skip {
    background: #ffffff;
    color: #868686;
    border: 1px #e3e3e3 solid;
}


.popup-buttons button:hover {
    opacity: 0.9;
}

#clicklead-phone {
    padding-left: 60px;
}