/* Modal aide e-mail */
[hidden] {
    display: none !important;
}

.mailhelp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: grid;
    place-items: center;
    padding: 18px;
    z-index: 2000;
}

.mailhelp-modal {
    width: min(820px, 100%);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(24, 0, 90, 0.14);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    padding: 18px;
}

.mailhelp-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 6px 10px;
}

.mailhelp-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--b74v-bleu);
}

.mailhelp-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(24, 0, 90, 0.12);
    background: rgba(24, 0, 90, 0.06);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.mailhelp-note {
    margin: 6px 6px 12px;
    color: rgba(17, 0, 58, 0.78);
    line-height: 1.45;
}

.mailhelp-text {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(24, 0, 90, 0.14);
    background: rgba(24, 0, 90, 0.03);
    padding: 14px;
    font-size: 1rem;
    line-height: 1.45;
    resize: vertical;
}

.mailhelp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 14px;
    padding: 0 6px 6px;
}