.email-pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-pdf-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.email-pdf-modal__box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px 28px;
    width: 100%;
    max-width: 420px;
    margin: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: epdfIn 0.22s ease;
}

@keyframes epdfIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1);    }
}

.email-pdf-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.email-pdf-modal__close:hover { color: #003FC9; }

.email-pdf-modal__title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
}

.email-pdf-modal__subtitle {
    font-size: 14px;
    color: #514DC5;
    margin: 0 0 20px;
    line-height: 1.5;
}

.email-pdf-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.email-pdf-modal__field label {
    font-size: 13px;
    font-weight: 600;
    color: #000070;
}

.email-pdf-modal__input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #ccc;
    border-radius: 24px;
    color: #000070;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.email-pdf-modal__input:focus { border-color: #003FC9; }

.email-pdf-modal__status {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 14px;
}
.email-pdf-modal__status.success {
    background: #e6f9ee;
    color: #1a7a3c;
    border: 1px solid #a3dbb9;
}
.email-pdf-modal__status.error {
    background: #fff0f0;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

.email-pdf-modal__send {
    border: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: var(--palette-600, #7973EF);
    color: var(--white, #FFF);
    font-family: 'KH-Teka';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    height: 40px;
    cursor: pointer;
}
.email-pdf-modal__send:hover{ 
    box-shadow: 0px 0px 12px 0px var(--palette-600, #7973EF) inset !important;
    background: white !important;
    color: #7973EF !important;
}
.email-pdf-modal__send:disabled { opacity: 0.6; cursor: not-allowed; }