/* Phone Number Popup Styles - Minimalist Modern Responsive */
.pnp-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(59, 130, 246, 0.10);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pnp-fadein 0.5s;
}
@keyframes pnp-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
.pnp-popup-box {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.10), 0 1.5px 8px #e0f2fe;
    padding: 18px 14px 14px 14px;
    max-width: 350px;
    width: 96vw;
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
    border: 1.5px solid #e0e7ef;
    transition: box-shadow 0.2s, background 0.2s;
}
.pnp-popup-box h2 {
    margin-bottom: 12px;
    font-size: 1.08em;
    color: #2563eb;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.pnp-popup-box input[type="text"],
.pnp-popup-box input[type="email"] {
    width: 100%;
    padding: 9px;
    border: 1.2px solid #dbeafe;
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 0.98em;
    background: #f8fafc;
    transition: border 0.2s;
    font-family: inherit;
}
.pnp-popup-box input[type="text"]:focus,
.pnp-popup-box input[type="email"]:focus {
    border-color: #2563eb;
    outline: none;
}
.pnp-popup-box select[multiple] {
    width: 100%;
    min-height: 38px;
    padding: 7px;
    border: 1.2px solid #dbeafe;
    border-radius: 5px;
    background: #f8fafc;
    font-size: 0.98em;
    margin-bottom: 8px;
    font-family: inherit;
    box-sizing: border-box;
}
.pnp-popup-box select[multiple]:focus {
    border-color: #2563eb;
    outline: none;
}
.pnp-popup-box button[type="submit"] {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    width: 100%;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1.5px 6px #2563eb22;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 2px;
}
.pnp-popup-box button[type="submit"]:hover {
    background: #1d4ed8;
    box-shadow: 0 3px 12px #2563eb22;
}
.pnp-popup-close {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 1.1em;
    position: absolute;
    top: 7px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
    line-height: 1;
}
.pnp-popup-close:hover {
    color: #1d4ed8;
}
#pnp-phone-error {
    color: #e11d48;
    margin-top: 6px;
    font-size: 0.96em;
    min-height: 18px;
    font-family: inherit;
}
.pnp-popup-box label {
    font-size: 0.97em;
    color: #222;
    font-weight: 500;
    margin-bottom: 2px;
    display: block;
    text-align: left;
}
.pnp-popup-box input[type="checkbox"] {
    margin-right: 6px;
}
@media (max-width: 600px) {
    .pnp-popup-box {
        padding: 8px 2vw 8px 2vw;
        max-width: 99vw;
        font-size: 0.96em;
    }
    .pnp-popup-box h2 {
        font-size: 0.98em;
    }
    .pnp-popup-close {
        top: 4px;
        right: 6px;
        font-size: 1em;
    }
} 