.leads-container{

    padding:40px;

    width:100%;

    overflow-x:auto;

    box-sizing:border-box;

    position: relative; /* هذا السطر يمنع تداخل العناصر ويحمي الأزرار */

}

.leads-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.leads-title{

    font-size:42px;

    font-weight:700;

    color:#1e40af;

}

.leads-actions{

    display:flex;

    gap:15px;

    align-items:center;

    flex-wrap:wrap;

}

.import-btn,
.add-leads-btn{

    background:#1d4ed8;

    color:white;

    padding:14px 22px;

    border:none;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    min-width:180px;

}

.import-btn{

    background:#e5e7eb;

    color:#111827;

}

.import-btn:hover{

    background:#d1d5db;

}

.add-leads-btn{

    background:#1d4ed8;

    color:white;

}

.add-leads-btn:hover{

    background:#1e3a8a;

}

.leads-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:30px;

}

.stat-card{

    background:white;

    border-radius:18px;

    padding:25px;

    box-shadow:0 4px 12px rgba(0,0,0,0.06);

}

.stat-card h3{

    font-size:16px;

    color:#6b7280;

    margin-bottom:10px;

}

.stat-card p{

    font-size:32px;

    font-weight:700;

    color:#111827;

}

.search-box{

    margin-bottom:25px;

}

.search-box input{

    width:100%;

    padding:16px;

    border-radius:14px;

    border:1px solid #d1d5db;

    font-size:15px;

    outline:none;

}

.search-box input:focus{

    border-color:#2563eb;

}

.leads-card{

    background:white;

    border-radius:22px;

    padding:25px;

    box-shadow:0 4px 20px rgba(0,0,0,0.05);

}

.leads-table{

    width:100%;

    border-collapse:collapse;

}

.leads-table thead{

    border-bottom:1px solid #e5e7eb;

}

.leads-table th{

    text-align:left;

    padding:18px;

    font-size:15px;

    color:#6b7280;

}

.leads-table td{

    padding:20px 18px;

    font-size:15px;

    color:#111827;

}

.leads-table tbody tr{

    border-bottom:1px solid #f3f4f6;

    transition:0.2s;

}

.leads-table tbody tr:hover{

    background:#f9fafb;

}

.status{

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.status.active{

    background:#dcfce7;

    color:#166534;

}

.table-btn{

    border:none;

    padding:10px 14px;

    border-radius:10px;

    cursor:pointer;

    font-size:13px;

    font-weight:600;

    margin-right:8px;

    transition:0.2s;

}

.view-btn{

    background:#dbeafe;

    color:#1d4ed8;

}

.view-btn:hover{

    background:#bfdbfe;

}

.download-btn{

    background:#dcfce7;

    color:#15803d;

}

.download-btn::before{
    content:"\2193";
    display:inline-block;
    margin-right:6px;
    font-size:14px;
    line-height:1;
}

.download-btn:hover{

    background:#bbf7d0;

}

.download-btn:disabled{

    opacity:0.65;

    cursor:wait;

}

.rename-btn{

    background:#fef3c7;

    color:#92400e;

}

.rename-btn::before{
    content:"\270E";
    display:inline-block;
    margin-right:6px;
    font-size:13px;
    line-height:1;
}

.rename-btn:hover{

    background:#fde68a;

}

.leads-list-actions{

    display:flex;

    align-items:center;

    gap:8px;

    flex-wrap:wrap;

    min-width:370px;

}

.leads-list-actions .table-btn{

    margin-right:0;

}

.delete-btn{

    background:#fee2e2;

    color:#dc2626;

}

.delete-btn:hover{

    background:#fecaca;

}

@media(max-width:1200px){

    .leads-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .leads-header{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

    .leads-stats{

        grid-template-columns:1fr;

    }

}

.view-leads-modal{

    width:900px;

    max-height:80vh;

    overflow:hidden;

}

.leads-viewer-list{

    margin-top:20px;

    max-height:500px;

    overflow-y:auto;

}

.leads-viewer-table{

    width:100%;

    border-collapse:collapse;

}

.leads-viewer-table th,
.leads-viewer-table td{

    padding:14px;

    border-bottom:1px solid #eee;

    text-align:left;

}

.leads-viewer-table th{

    background:#f9fafb;

    position:sticky;

    top:0;

}

#importListSelect,
#newImportListName{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

    margin-bottom:15px;

    font-size:14px;

}

.import-leads-file-name{
    min-height:20px;
    margin:2px 0 0;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
    overflow-wrap:anywhere;
}

.leads-actions{
    position:relative;
    overflow:visible;
    padding-top:2px;
}

.bounce-holds-btn{
    transform:none !important;
}

.bounce-holds-btn:hover,
.bounce-holds-btn:focus-visible{
    transform:none !important;
}

.viewer-actions{

    display:flex;

    gap:10px;

    margin:15px 0;

}

.lead-checkbox{

width:18px;

height:18px;

cursor:pointer;

flex-shrink:0;

}

.lead-checkbox{

width:18px !important;

height:18px !important;

min-width:18px;

min-height:18px;

cursor:pointer;

accent-color:#2f5fe3;

transform:scale(1);

margin:0;

padding:0;

box-sizing:border-box;

}

/* HEADER CHECKBOX */

#selectAllCheckbox{

width:18px !important;

height:18px !important;

cursor:pointer;

accent-color:#2f5fe3;

}

#leadsViewerTable th:first-child,
#leadsViewerTable td:first-child{

width:50px;
text-align:center;

}

.lead-checkbox{

width:18px;
height:18px;
cursor:pointer;

}

.leads-viewer-page{

display:none;

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:#f4f7fb;

padding:40px;

box-sizing:border-box;

overflow:auto;

z-index:999;

}

.viewer-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.close-viewer-btn{

width:45px;

height:45px;

border:none;

border-radius:12px;

background:#ff4d4f;

color:white;

font-size:22px;

cursor:pointer;

}

.viewer-actions{

display:flex;

gap:12px;

margin-bottom:20px;

}

.viewer-table{

width:100%;

border-collapse:collapse;

background:white;

border-radius:20px;

overflow:hidden;

}

.viewer-table th,
.viewer-table td{

padding:16px;

border-bottom:1px solid #eee;

text-align:left;

}

.modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:22px;
}

.modal-primary-btn{
    background:#2f5fe3;
    color:#fff;
    border:none;
    padding:13px 24px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

.modal-secondary-btn{
    background:#e8eef7;
    color:#102033;
    border:none;
    padding:13px 24px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

/* =========================================================================
   RENAME LEADS LIST
   ========================================================================= */

.rename-leads-modal{
    inset:0;
    width:100%;
    height:100%;
    padding:20px;
    box-sizing:border-box;
    background:rgba(15,23,42,.55);
    align-items:center;
    justify-content:center;
}

.rename-leads-modal-content{
    width:min(480px, calc(100vw - 32px));
    max-width:480px;
    background:#ffffff;
    border-radius:18px;
    padding:26px;
    box-sizing:border-box;
    box-shadow:0 28px 70px rgba(15,23,42,.24);
}

.rename-leads-modal-content .modal-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:22px;
}

.rename-leads-modal-content .modal-header h2{
    margin:0;
    color:#0f172a;
    font-size:22px;
    font-weight:800;
}

.rename-leads-modal-content .close-modal-btn{
    width:36px;
    height:36px;
    flex-shrink:0;
    border:none;
    border-radius:9px;
    background:#f1f5f9;
    color:#475569;
    cursor:pointer;
    font-size:16px;
}

.rename-leads-current-label{
    margin:7px 0 0;
    color:#64748b;
    font-size:13px;
    overflow-wrap:anywhere;
}

.rename-leads-current-label strong{
    color:#334155;
}

.rename-leads-field-label{
    display:block;
    margin-bottom:8px;
    color:#334155;
    font-size:13px;
    font-weight:800;
}

#renameLeadsListName{
    width:100%;
    box-sizing:border-box;
    padding:13px 14px;
    border:1px solid #cbd5e1;
    border-radius:10px;
    background:#ffffff;
    color:#0f172a;
    font-size:14px;
    outline:none;
}

#renameLeadsListName:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.1);
}

.rename-leads-error{
    min-height:19px;
    margin:8px 0 0;
    color:#dc2626;
    font-size:12px;
    font-weight:700;
}

.rename-leads-save-btn:disabled{
    opacity:.65;
    cursor:wait;
}

/* =========================================================================
   GLOBAL SUPPRESSION LIST
   ========================================================================= */

.global-suppression-btn{
    background:#fff1f2;
    color:#be123c;
    border:1px solid #fecdd3;
    padding:10px 18px;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.global-suppression-btn:hover{
    background:#ffe4e6;
}

.status.suppressed{
    background:#fff1f2;
    color:#be123c;
    border:1px solid #fecdd3;
    font-weight:800;
}

.suppression-modal{
    position:fixed;
    inset:0;
    z-index:10020;
    background:rgba(15,23,42,.55);
    align-items:center;
    justify-content:center;
    padding:24px;
    box-sizing:border-box;
}

.suppression-modal-card{
    width:min(1150px,96vw);
    max-height:90vh;
    overflow:hidden;
    background:#fff;
    border-radius:18px;
    box-shadow:0 28px 70px rgba(15,23,42,.25);
    display:flex;
    flex-direction:column;
}

.suppression-modal-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    padding:22px 24px 18px;
    border-bottom:1px solid #e2e8f0;
}

.suppression-modal-header h2{
    margin:0;
    color:#0f172a;
    font-size:22px;
    font-weight:800;
}

.suppression-modal-header p{
    margin:6px 0 0;
    color:#64748b;
    font-size:13px;
}

.suppression-close-btn{
    width:36px;
    height:36px;
    flex-shrink:0;
    border:none;
    border-radius:9px;
    background:#f1f5f9;
    color:#475569;
    cursor:pointer;
    font-size:16px;
}

.suppression-add-panel{
    display:grid;
    grid-template-columns:1fr 1.5fr auto;
    gap:12px;
    padding:18px 24px;
    background:#f8fafc;
    border-bottom:1px solid #e2e8f0;
}

.suppression-add-panel input,
.suppression-toolbar input{
    width:100%;
    box-sizing:border-box;
    padding:11px 13px;
    border:1px solid #cbd5e1;
    border-radius:9px;
    background:#fff;
    color:#0f172a;
    font-size:13px;
    outline:none;
}

.suppression-add-panel input:focus,
.suppression-toolbar input:focus{
    border-color:#e11d48;
    box-shadow:0 0 0 3px rgba(225,29,72,.08);
}

.suppression-add-btn{
    border:none;
    border-radius:9px;
    padding:11px 17px;
    background:#e11d48;
    color:#fff;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
    white-space:nowrap;
}

.suppression-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:16px 24px;
}

.suppression-toolbar input{
    max-width:380px;
}

.suppression-summary{
    color:#64748b;
    font-size:13px;
}

.suppression-summary strong{
    color:#be123c;
    font-size:18px;
    margin-right:5px;
}

.suppression-table-wrap{
    overflow:auto;
    padding:0 24px 24px;
}

.suppression-table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
}

.suppression-table th{
    text-align:left;
    padding:12px 10px;
    color:#64748b;
    background:#f8fafc;
    border-bottom:1px solid #e2e8f0;
    font-size:12px;
    font-weight:800;
    position:sticky;
    top:0;
}

.suppression-table td{
    padding:12px 10px;
    border-bottom:1px solid #f1f5f9;
    color:#334155;
    font-size:13px;
    vertical-align:top;
}

.suppression-email-cell{
    color:#0f172a;
    font-weight:750;
}

.suppression-status-active,
.suppression-status-released{
    display:inline-flex;
    padding:5px 9px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
}

.suppression-status-active{
    background:#fff1f2;
    color:#be123c;
}

.suppression-status-released{
    background:#f1f5f9;
    color:#64748b;
}

.suppression-release-btn{
    border:1px solid #cbd5e1;
    background:#fff;
    color:#334155;
    padding:7px 10px;
    border-radius:8px;
    font-size:12px;
    font-weight:750;
    cursor:pointer;
}

.suppression-release-btn:hover{
    border-color:#16a34a;
    color:#15803d;
}

.suppression-empty-row{
    text-align:center;
    color:#94a3b8 !important;
    padding:28px !important;
}

@media(max-width:800px){
    .suppression-add-panel{
        grid-template-columns:1fr;
    }

    .suppression-toolbar{
        align-items:stretch;
        flex-direction:column;
    }

    .suppression-toolbar input{
        max-width:none;
    }
}


/* =========================================================================
   LEADS VIEWER PAGINATION & PERFORMANCE v3.5.0
   ========================================================================= */

.leads-viewer-list{
    margin-top:0;
    min-height:260px;
    max-height:none;
    overflow:auto;
    contain:layout paint;
}

.leads-viewer-table{
    table-layout:fixed;
}

.leads-viewer-table th,
.leads-viewer-table td{
    padding:12px 14px;
    vertical-align:middle;
    overflow:hidden;
    text-overflow:ellipsis;
}

.leads-viewer-table th:nth-child(1),
.leads-viewer-table td:nth-child(1){
    width:50px;
}

.leads-viewer-table th:nth-child(2),
.leads-viewer-table td:nth-child(2){
    width:25%;
}

.leads-viewer-table th:nth-child(3),
.leads-viewer-table td:nth-child(3){
    width:18%;
}

.leads-viewer-table th:nth-child(4),
.leads-viewer-table td:nth-child(4){
    width:18%;
}

.leads-viewer-table th:nth-child(5),
.leads-viewer-table td:nth-child(5){
    width:22%;
}

.leads-viewer-table th:nth-child(6),
.leads-viewer-table td:nth-child(6){
    width:130px;
}

.leads-viewer-checkbox-cell{
    text-align:center !important;
}

.leads-viewer-muted-cell{
    color:#475569;
    font-weight:500;
}

.leads-viewer-empty-cell,
.leads-viewer-loading-cell{
    padding:32px !important;
    text-align:center !important;
    color:#64748b;
    font-weight:600;
}

.leads-viewer-pagination{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    flex-shrink:0;
    padding:14px 16px;
    margin-top:12px;
    border:1px solid #e2e8f0;
    border-radius:12px;
    background:#ffffff;
    box-shadow:0 1px 3px rgba(15,23,42,.05);
}

.leads-pagination-summary,
.leads-pagination-navigation{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.leads-pagination-summary{
    color:#475569;
    font-size:13px;
    font-weight:700;
}

.leads-page-size-control{
    display:flex;
    align-items:center;
    gap:6px;
}

.leads-page-size-control select{
    height:34px;
    padding:0 28px 0 10px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    background:#ffffff;
    color:#0f172a;
    font:inherit;
    cursor:pointer;
}

.leads-pagination-nav-btn,
.leads-pagination-page{
    min-width:36px;
    height:36px;
    padding:0 11px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    background:#ffffff;
    color:#334155;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
}

.leads-pagination-nav-btn:hover:not(:disabled),
.leads-pagination-page:hover{
    border-color:#2563eb;
    background:#eff6ff;
    color:#1d4ed8;
}

.leads-pagination-page.active{
    border-color:#2563eb;
    background:#2563eb;
    color:#ffffff;
}

.leads-pagination-nav-btn:disabled{
    opacity:.45;
    cursor:not-allowed;
}

.leads-pagination-pages{
    display:flex;
    align-items:center;
    gap:5px;
}

.leads-pagination-ellipsis{
    padding:0 2px;
    color:#94a3b8;
    font-weight:800;
}

.leads-pagination-label{
    min-width:92px;
    color:#64748b;
    font-size:12px;
    font-weight:700;
    text-align:center;
}

@media(max-width:900px){

    .leads-viewer-pagination{
        align-items:flex-start;
        flex-direction:column;
    }

    .leads-pagination-navigation{
        width:100%;
    }

}


/* =========================================================
   V3.4.9 - LEADS STATISTICS
========================================================= */

.leads-main-stats{
    display:grid !important;
    grid-template-columns:repeat(5, minmax(0, 1fr)) !important;
    gap:20px !important;
    margin-bottom:24px !important;
    flex-shrink:0;
}

.leads-main-stats .leads-stat-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 1px 3px rgba(0,0,0,.05);
    border:1px solid #e2e8f0;
    min-width:0;
}

.leads-main-stats .leads-stat-card h3{
    color:#64748b;
    font-size:14px;
    font-weight:600;
    margin:0 0 8px 0;
}

.leads-main-stats .leads-stat-card p{
    color:#0f172a;
    font-size:28px;
    font-weight:700;
    margin:0;
}

.leads-list-stats{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    margin:0 0 20px 0;
    flex-shrink:0;
}

.leads-list-stat-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    min-height:64px;
    padding:14px 18px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:12px;
    box-shadow:0 1px 3px rgba(0,0,0,.04);
}

.leads-list-stat-card span{
    color:#64748b;
    font-size:14px;
    font-weight:700;
}

.leads-list-stat-card strong{
    color:#0f172a;
    font-size:25px;
    line-height:1;
}

/* Valid statistic: soft green positive state */
.leads-list-stat-card:first-child{
    border-color:#bbf7d0;
    background:#f0fdf4;
}

.leads-list-stat-card:first-child strong{
    color:#16a34a;
}

.leads-list-stat-invalid{
    border-color:#fed7aa;
    background:#fffaf5;
}

.leads-list-stat-invalid strong{
    color:#c2410c;
}

.leads-list-stat-bounce{
    border-color:#fecaca;
    background:#fef2f2;
}

.leads-list-stat-bounce strong{
    color:#dc2626;
}

.lead-verification-controls .table-btn{
    min-height:34px;
    padding:7px 12px;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
}

#btnPauseListVerification{
    border:1px solid #f59e0b;
    background:#fffbeb;
    color:#92400e;
}

#btnResumeListVerification{
    border:1px solid #10b981;
    background:#ecfdf5;
    color:#047857;
}

@media (max-width:1200px){
    .leads-main-stats{
        grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width:850px){
    .leads-main-stats{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

    .leads-list-stats{
        grid-template-columns:1fr;
    }
}

@media (max-width:560px){
    .leads-main-stats{
        grid-template-columns:1fr !important;
    }
}


/* =========================================================================
   PHASE 2C STEP 2B — BOUNCE HOLDS & QUARANTINE
   ========================================================================= */

.bounce-holds-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:10px 18px;
    border:1px solid #f59e0b;
    border-radius:8px;
    background:#fff7ed;
    color:#9a3412;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.bounce-holds-btn:hover{
    background:#ffedd5;
    box-shadow:0 8px 18px rgba(154,52,18,.10);
    transform:none;
}

.bounce-holds-modal{
    position:fixed;
    inset:0;
    z-index:10040;
    display:none;
    align-items:center;
    justify-content:center;
    padding:22px;
    box-sizing:border-box;
    background:rgba(15,23,42,.62);
    backdrop-filter:blur(3px);
}

.bounce-holds-card{
    width:min(1500px, calc(100vw - 44px));
    height:min(900px, calc(100vh - 44px));
    display:flex;
    flex-direction:column;
    overflow:hidden;
    background:#f8fafc;
    border:1px solid rgba(255,255,255,.75);
    border-radius:22px;
    box-shadow:0 32px 90px rgba(15,23,42,.30);
}

.bounce-holds-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    padding:24px 28px 18px;
    background:#ffffff;
    border-bottom:1px solid #e2e8f0;
}

.bounce-holds-header h2{
    margin:0;
    color:#0f172a;
    font-size:25px;
    font-weight:800;
    letter-spacing:-.02em;
}

.bounce-holds-header p{
    max-width:850px;
    margin:7px 0 0;
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

.bounce-holds-close,
.bounce-hold-dialog-header button{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border:none;
    border-radius:11px;
    background:#fee2e2;
    color:#b91c1c;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
}

.bounce-holds-close:hover,
.bounce-hold-dialog-header button:hover{
    background:#fecaca;
}

.bounce-holds-safety-note{
    margin:16px 28px 0;
    padding:12px 15px;
    border:1px solid #bfdbfe;
    border-radius:12px;
    background:#eff6ff;
    color:#1e3a8a;
    font-size:13px;
    line-height:1.5;
}

.bounce-holds-summary-grid{
    display:grid;
    grid-template-columns:repeat(6, minmax(130px, 1fr));
    gap:12px;
    padding:16px 28px;
}

.bounce-summary-card{
    min-width:0;
    padding:14px 15px;
    border:1px solid transparent;
    border-radius:14px;
    text-align:left;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease;
}

.bounce-summary-card:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(15,23,42,.09);
}

.bounce-summary-card span{
    display:block;
    overflow:hidden;
    color:#475569;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.bounce-summary-card strong{
    display:block;
    margin-top:6px;
    color:#0f172a;
    font-size:24px;
    font-weight:800;
}

.bounce-summary-card.hard{background:#fef2f2;border-color:#fecaca;}
.bounce-summary-card.temporary{background:#fffbeb;border-color:#fde68a;}
.bounce-summary-card.policy{background:#eff6ff;border-color:#bfdbfe;}
.bounce-summary-card.review{background:#faf5ff;border-color:#e9d5ff;}
.bounce-summary-card.released{background:#ecfdf5;border-color:#a7f3d0;}
.bounce-summary-card.expired{background:#f1f5f9;border-color:#cbd5e1;}

.bounce-holds-toolbar{
    display:grid;
    grid-template-columns:minmax(280px, 1fr) 190px 150px 130px auto;
    gap:10px;
    align-items:center;
    padding:0 28px 16px;
}

.bounce-holds-toolbar input,
.bounce-holds-toolbar select,
.bounce-hold-dialog select,
.bounce-hold-dialog textarea{
    width:100%;
    min-height:42px;
    box-sizing:border-box;
    border:1px solid #cbd5e1;
    border-radius:10px;
    background:#fff;
    color:#0f172a;
    font:inherit;
    font-size:13px;
    outline:none;
}

.bounce-holds-toolbar input,
.bounce-hold-dialog textarea{
    padding:10px 12px;
}

.bounce-holds-toolbar select,
.bounce-hold-dialog select{
    padding:9px 34px 9px 11px;
}

.bounce-holds-toolbar input:focus,
.bounce-holds-toolbar select:focus,
.bounce-hold-dialog select:focus,
.bounce-hold-dialog textarea:focus{
    border-color:#60a5fa;
    box-shadow:0 0 0 3px rgba(59,130,246,.12);
}

.bounce-holds-refresh-btn{
    min-height:42px;
    padding:10px 16px;
    border:none;
    border-radius:10px;
    background:#e2e8f0;
    color:#334155;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.bounce-holds-refresh-btn:hover{
    background:#cbd5e1;
}

.bounce-holds-table-wrap{
    flex:1;
    min-height:0;
    margin:0 28px;
    overflow:auto;
    border:1px solid #e2e8f0;
    border-radius:14px;
    background:#fff;
}

.bounce-holds-table{
    width:100%;
    min-width:1460px;
    border-collapse:separate;
    border-spacing:0;
    table-layout:auto;
}

.bounce-holds-table th:nth-child(1),
.bounce-holds-table td:nth-child(1){
    width:280px;
    min-width:280px;
}

.bounce-holds-table th:nth-child(2),
.bounce-holds-table td:nth-child(2){
    width:150px;
    min-width:150px;
}

.bounce-holds-table th:nth-child(3),
.bounce-holds-table td:nth-child(3){
    width:130px;
    min-width:130px;
}

.bounce-holds-table th:nth-child(4),
.bounce-holds-table td:nth-child(4){
    min-width:330px;
}

.bounce-holds-table th:nth-child(5),
.bounce-holds-table td:nth-child(5){
    width:190px;
    min-width:190px;
}

.bounce-holds-table th:nth-child(6),
.bounce-holds-table td:nth-child(6){
    width:125px;
    min-width:125px;
}

.bounce-holds-table th:nth-child(7),
.bounce-holds-table td:nth-child(7){
    width:125px;
    min-width:125px;
}

.bounce-holds-table th:nth-child(8),
.bounce-holds-table td:nth-child(8){
    width:215px;
    min-width:215px;
}

.bounce-holds-table th{
    position:sticky;
    top:0;
    z-index:2;
    padding:13px 14px;
    border-bottom:1px solid #dbe4ef;
    background:#f8fafc;
    color:#475569;
    font-size:12px;
    font-weight:800;
    text-align:left;
    white-space:nowrap;
}

.bounce-holds-table td{
    padding:14px;
    border-bottom:1px solid #edf2f7;
    color:#334155;
    font-size:13px;
    vertical-align:top;
}

.bounce-holds-table tbody tr:hover{
    background:#f8fbff;
}

.bounce-holds-table tbody tr:last-child td{
    border-bottom:none;
}

.bounce-hold-email{
    width:100%;
    max-width:280px;
    color:#0f172a;
    font-weight:750;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    word-break:normal;
    overflow-wrap:normal;
}

.bounce-hold-reason{
    max-width:340px;
    color:#475569;
    line-height:1.45;
}

.bounce-hold-meta-stack{
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:170px;
}

.bounce-hold-meta-stack strong{
    color:#334155;
    font-size:12px;
}

.bounce-hold-meta-stack span{
    color:#64748b;
    font-size:12px;
}

.bounce-hold-badge,
.bounce-hold-state-badge,
.bounce-hold-scope-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:25px;
    padding:4px 9px;
    border-radius:999px;
    font-size:11px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
}

.bounce-hold-badge.hard-suppressed{background:#fee2e2;color:#b91c1c;}
.bounce-hold-badge.temporary-hold{background:#fef3c7;color:#92400e;}
.bounce-hold-badge.policy-hold{background:#dbeafe;color:#1d4ed8;}
.bounce-hold-badge.manual-review{background:#f3e8ff;color:#7e22ce;}
.bounce-hold-badge.released{background:#d1fae5;color:#047857;}

.bounce-hold-state-badge.active{background:#fef3c7;color:#92400e;}
.bounce-hold-state-badge.released{background:#d1fae5;color:#047857;}
.bounce-hold-state-badge.expired{background:#e2e8f0;color:#475569;}

.bounce-hold-scope-badge.global{background:#f1f5f9;color:#334155;}
.bounce-hold-scope-badge.smtp-account{background:#e0f2fe;color:#0369a1;}

.bounce-hold-date{
    display:inline-flex;
    flex-direction:column;
    gap:2px;
    min-width:112px;
    color:#334155;
    font-size:12px;
    font-weight:650;
}

.bounce-hold-date small{
    color:#94a3b8;
    font-size:11px;
    font-weight:500;
}

.bounce-hold-row-actions{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    min-width:170px;
}

.bounce-hold-action{
    min-height:32px;
    padding:7px 10px;
    border:none;
    border-radius:8px;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
    white-space:nowrap;
}

.bounce-hold-action.details{background:#e2e8f0;color:#334155;}
.bounce-hold-action.release{background:#dcfce7;color:#166534;}
.bounce-hold-action.reclassify{background:#dbeafe;color:#1d4ed8;}
.bounce-hold-action.hard{background:#fee2e2;color:#b91c1c;}

.bounce-hold-action:hover{
    filter:brightness(.97);
    transform:translateY(-1px);
}

.bounce-hold-action:disabled,
.bounce-holds-refresh-btn:disabled{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
}

.bounce-holds-empty,
.bounce-holds-loading{
    padding:34px !important;
    color:#64748b !important;
    text-align:center !important;
}

.bounce-holds-pagination{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 28px 22px;
    color:#64748b;
    font-size:12px;
}

.bounce-holds-pagination-actions{
    display:flex;
    align-items:center;
    gap:8px;
}

.bounce-holds-pagination button{
    min-width:36px;
    min-height:34px;
    padding:7px 10px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    background:#fff;
    color:#334155;
    font-size:12px;
    font-weight:700;
    cursor:pointer;
}

.bounce-holds-pagination button:hover:not(:disabled){
    border-color:#93c5fd;
    background:#eff6ff;
}

.bounce-holds-pagination button:disabled{
    opacity:.45;
    cursor:not-allowed;
}

.bounce-holds-page-buttons{
    display:flex;
    align-items:center;
    gap:5px;
}

.bounce-holds-page-buttons button.active{
    border-color:#2563eb;
    background:#2563eb;
    color:#fff;
}

.bounce-holds-pagination-ellipsis{
    padding:0 2px;
    color:#94a3b8;
}

/* Details and action dialogs */
.bounce-hold-dialog-layer{
    position:fixed;
    inset:0;
    z-index:10060;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-sizing:border-box;
    background:rgba(15,23,42,.55);
    backdrop-filter:blur(2px);
}

.bounce-hold-subdialog{
    z-index:10080;
}

.bounce-hold-dialog{
    width:min(760px, calc(100vw - 40px));
    max-height:calc(100vh - 40px);
    overflow:auto;
    padding:24px;
    box-sizing:border-box;
    border-radius:20px;
    background:#fff;
    box-shadow:0 30px 80px rgba(15,23,42,.30);
}

.bounce-hold-small-dialog{
    width:min(520px, calc(100vw - 40px));
}

.bounce-hold-reclassify-dialog{
    width:min(680px, calc(100vw - 40px));
}

.bounce-hold-dialog-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:20px;
}

.bounce-hold-dialog-header h3{
    margin:0;
    color:#0f172a;
    font-size:21px;
    font-weight:800;
}

.bounce-hold-dialog-header p{
    margin:5px 0 0;
    color:#64748b;
    font-size:13px;
    word-break:break-word;
}

.bounce-hold-details-body{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.bounce-hold-detail-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
}

.bounce-hold-detail-item{
    min-width:0;
    padding:13px;
    border:1px solid #e2e8f0;
    border-radius:12px;
    background:#f8fafc;
}

.bounce-hold-detail-item.wide{
    grid-column:1 / -1;
}

.bounce-hold-detail-item span{
    display:block;
    margin-bottom:5px;
    color:#94a3b8;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.bounce-hold-detail-item strong,
.bounce-hold-detail-item p{
    margin:0;
    color:#334155;
    font-size:13px;
    line-height:1.5;
    word-break:break-word;
}

.bounce-hold-history{
    padding-top:4px;
}

.bounce-hold-history h4{
    margin:0 0 12px;
    color:#0f172a;
    font-size:15px;
    font-weight:800;
}

.bounce-hold-event-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.bounce-hold-event{
    position:relative;
    padding:12px 14px 12px 36px;
    border:1px solid #e2e8f0;
    border-radius:12px;
    background:#fff;
}

.bounce-hold-event::before{
    content:"";
    position:absolute;
    left:15px;
    top:18px;
    width:9px;
    height:9px;
    border-radius:50%;
    background:#3b82f6;
    box-shadow:0 0 0 4px #dbeafe;
}

.bounce-hold-event strong{
    display:block;
    color:#0f172a;
    font-size:13px;
}

.bounce-hold-event p{
    margin:5px 0 0;
    color:#64748b;
    font-size:12px;
    line-height:1.5;
}

.bounce-hold-event small{
    display:block;
    margin-top:5px;
    color:#94a3b8;
    font-size:11px;
}

.bounce-hold-dialog-actions{
    display:flex;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:10px;
    margin-top:22px;
}

.bounce-hold-field-label{
    display:block;
    margin:0 0 7px;
    color:#475569;
    font-size:12px;
    font-weight:800;
}

.bounce-hold-dialog textarea{
    min-height:110px;
    resize:vertical;
    line-height:1.5;
}

.bounce-hold-form-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    margin-bottom:16px;
}

.bounce-hold-reclassify-warning{
    margin-top:12px;
    padding:11px 13px;
    border-radius:10px;
    background:#f8fafc;
    color:#64748b;
    font-size:12px;
    line-height:1.5;
}

.bounce-hold-reclassify-warning.hard{
    background:#fef2f2;
    color:#991b1b;
}

.bounce-hold-reclassify-warning.temporary{
    background:#fffbeb;
    color:#92400e;
}

.bounce-hold-reclassify-warning.policy{
    background:#eff6ff;
    color:#1e40af;
}

.bounce-hold-reclassify-warning.review{
    background:#faf5ff;
    color:#6b21a8;
}

@media (max-width:1200px){
    .bounce-holds-summary-grid{
        grid-template-columns:repeat(3, minmax(140px, 1fr));
    }

    .bounce-holds-toolbar{
        grid-template-columns:minmax(260px, 1fr) 180px 150px;
    }

    .bounce-holds-refresh-btn,
    #bounceHoldsPageSize{
        width:100%;
    }
}

@media (max-width:760px){
    .leads-actions{
        flex-wrap:wrap;
    }

    .bounce-holds-modal{
        padding:8px;
    }

    .bounce-holds-card{
        width:calc(100vw - 16px);
        height:calc(100vh - 16px);
        border-radius:16px;
    }

    .bounce-holds-header,
    .bounce-holds-summary-grid,
    .bounce-holds-toolbar,
    .bounce-holds-pagination{
        padding-left:16px;
        padding-right:16px;
    }

    .bounce-holds-safety-note{
        margin-left:16px;
        margin-right:16px;
    }

    .bounce-holds-summary-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .bounce-holds-toolbar{
        grid-template-columns:1fr;
    }

    .bounce-holds-table-wrap{
        margin-left:16px;
        margin-right:16px;
    }

    .bounce-holds-pagination{
        align-items:flex-start;
        flex-direction:column;
    }

    .bounce-holds-pagination-actions{
        width:100%;
        overflow-x:auto;
    }

    .bounce-hold-detail-grid,
    .bounce-hold-form-grid{
        grid-template-columns:1fr;
    }
}

/* =========================================================
   INDIVIDUAL EMAIL VERIFIER — LEADS INTERNAL TOOL
========================================================= */
.leads-search-tools-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:20px;
    flex-shrink:0;
}

.leads-main-search-box{
    flex:1 1 440px;
    min-width:260px;
    margin:0;
}

.leads-main-search-box input{
    width:100%;
    padding:12px 16px;
    border:1px solid #cbd5e1;
    border-radius:8px;
    background:#fff;
    font-size:14px;
    box-sizing:border-box;
}

.leads-secondary-actions{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
    flex-wrap:wrap;
}

.email-verifier-open-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:42px;
    padding:10px 18px;
    border:1px solid #86efac;
    border-radius:10px;
    background:#dcfce7;
    color:#15803d;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    box-sizing:border-box;
    transition:background-color .16s ease,border-color .16s ease,box-shadow .16s ease;
}

.email-verifier-open-btn:hover{
    background:#bbf7d0;
    border-color:#4ade80;
    box-shadow:0 5px 15px rgba(22,163,74,.12);
}

.email-verifier-button-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border:2px solid currentColor;
    border-radius:50%;
    font-size:13px;
    line-height:1;
}

.email-verifier-page{
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding:2px 4px 18px;
    box-sizing:border-box;
}

.email-verifier-page-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:24px;
    margin-bottom:22px;
}

.email-verifier-eyebrow{
    display:block;
    margin-bottom:5px;
    color:#2563eb;
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.email-verifier-page-header h2{
    margin:0;
    color:#0f172a;
    font-size:30px;
    line-height:1.15;
}

.email-verifier-page-header p{
    max-width:760px;
    margin:9px 0 0;
    color:#64748b;
    font-size:14px;
    line-height:1.55;
}

.email-verifier-close-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border:0;
    border-radius:10px;
    background:#fee2e2;
    color:#ef4444;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    flex:0 0 auto;
}

.email-verifier-check-card,
.email-verifier-current-card,
.email-verifier-history-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.email-verifier-check-card{
    padding:24px;
    margin-bottom:18px;
}

.email-verifier-check-copy h3,
.email-verifier-history-header h3{
    margin:0;
    color:#0f172a;
    font-size:19px;
}

.email-verifier-check-copy p,
.email-verifier-history-header p{
    margin:7px 0 0;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
}

.email-verifier-form{
    display:grid;
    grid-template-columns:minmax(240px,1fr) auto;
    gap:12px;
    margin-top:20px;
}

.email-verifier-form input{
    width:100%;
    min-height:48px;
    border:1px solid #cbd5e1;
    border-radius:11px;
    padding:0 16px;
    color:#0f172a;
    font-size:15px;
    box-sizing:border-box;
    outline:none;
}

.email-verifier-form input:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

.email-verifier-form button{
    min-width:145px;
    min-height:48px;
    border:0;
    border-radius:11px;
    padding:0 22px;
    background:#2563eb;
    color:#fff;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.email-verifier-form button:disabled,
.email-verifier-current-actions button:disabled{
    opacity:.55;
    cursor:not-allowed;
}

.email-verifier-protection-notice{
    margin-top:16px;
    padding:12px 14px;
    border:1px solid #fde68a;
    border-radius:10px;
    background:#fffbeb;
    color:#92400e;
    font-size:13px;
    font-weight:650;
    line-height:1.5;
}

.email-verifier-current-card{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    gap:18px;
    padding:22px 24px;
    margin-bottom:18px;
    border-left:5px solid #cbd5e1;
}

.email-verifier-current-valid{border-left-color:#22c55e;}
.email-verifier-current-unknown{border-left-color:#f59e0b;}
.email-verifier-current-invalid{border-left-color:#ef4444;}
.email-verifier-current-working{border-left-color:#2563eb;}

.email-verifier-current-main{
    display:flex;
    align-items:flex-start;
    gap:15px;
    min-width:0;
}

.email-verifier-result-dot{
    width:15px;
    height:15px;
    margin-top:6px;
    border-radius:50%;
    flex:0 0 auto;
    background:#94a3b8;
    box-shadow:0 0 0 5px rgba(148,163,184,.14);
}

.email-verifier-dot-valid{background:#22c55e;box-shadow:0 0 0 5px rgba(34,197,94,.14);}
.email-verifier-dot-unknown{background:#f59e0b;box-shadow:0 0 0 5px rgba(245,158,11,.14);}
.email-verifier-dot-invalid{background:#ef4444;box-shadow:0 0 0 5px rgba(239,68,68,.14);}
.email-verifier-dot-working{background:#2563eb;box-shadow:0 0 0 5px rgba(37,99,235,.14);animation:emailVerifierPulse 1.25s infinite;}

@keyframes emailVerifierPulse{
    0%,100%{opacity:1;transform:scale(1);}
    50%{opacity:.5;transform:scale(.82);}
}

.email-verifier-current-label{
    display:block;
    margin-bottom:3px;
    color:#64748b;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.email-verifier-current-main strong{
    display:block;
    max-width:100%;
    color:#0f172a;
    font-size:17px;
    overflow-wrap:anywhere;
}

.email-verifier-current-main p{
    margin:7px 0 0;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
}

.email-verifier-current-actions{
    display:flex;
    align-items:flex-start;
    gap:9px;
}

.email-verifier-current-actions button,
.email-verifier-history-table button,
.email-verifier-pagination button{
    border:1px solid #cbd5e1;
    border-radius:9px;
    background:#fff;
    color:#334155;
    padding:9px 13px;
    font-size:12px;
    font-weight:750;
    cursor:pointer;
}

.email-verifier-current-actions .email-verifier-cancel-btn{
    border-color:#fecaca;
    background:#fef2f2;
    color:#dc2626;
}

.email-verifier-details{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:repeat(6,minmax(115px,1fr));
    gap:10px;
    padding-top:18px;
    border-top:1px solid #e2e8f0;
}

.email-verifier-details > div{
    min-width:0;
    padding:11px 12px;
    border-radius:10px;
    background:#f8fafc;
}

.email-verifier-details span{
    display:block;
    margin-bottom:5px;
    color:#64748b;
    font-size:11px;
    font-weight:700;
}

.email-verifier-details strong{
    display:block;
    color:#0f172a;
    font-size:12px;
    overflow-wrap:anywhere;
}

.email-verifier-history-card{
    overflow:hidden;
}

.email-verifier-history-tools{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 1 470px;
    justify-content:flex-end;
}

.email-verifier-history-tools input{
    min-width:240px;
    flex:1 1 330px;
}

.email-verifier-delete-all-btn{
    min-height:42px;
    flex:0 0 auto;
    border:1px solid #fecaca;
    border-radius:10px;
    background:#fef2f2;
    color:#dc2626;
    padding:0 16px;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}

.email-verifier-delete-all-btn:hover{
    background:#fee2e2;
}

.email-verifier-delete-all-btn:disabled{
    opacity:.55;
    cursor:not-allowed;
}


.email-verifier-history-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:20px 22px;
    border-bottom:1px solid #e2e8f0;
}

.email-verifier-history-header input{
    width:min(330px,100%);
    min-height:40px;
    border:1px solid #cbd5e1;
    border-radius:9px;
    padding:0 13px;
    font-size:13px;
    outline:none;
}

.email-verifier-history-table-wrap{
    overflow:auto;
    max-height:430px;
}

.email-verifier-history-table{
    width:100%;
    min-width:940px;
    border-collapse:collapse;
    text-align:left;
}

.email-verifier-history-table thead{
    position:sticky;
    top:0;
    z-index:2;
    background:#f8fafc;
}

.email-verifier-history-table th,
.email-verifier-history-table td{
    padding:14px 16px;
    border-bottom:1px solid #eef2f7;
    color:#334155;
    font-size:13px;
    vertical-align:middle;
}

.email-verifier-history-table th{
    color:#475569;
    font-size:12px;
    font-weight:800;
}

.email-verifier-history-email{
    color:#0f172a;
    font-weight:700;
    overflow-wrap:anywhere;
}

.email-verifier-history-result{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:750;
    text-transform:capitalize;
}

.email-verifier-history-result .email-verifier-result-dot{
    width:10px;
    height:10px;
    margin:0;
    box-shadow:none;
}

.email-verifier-history-reason{
    max-width:320px;
    line-height:1.4;
}

.email-verifier-empty-row{
    padding:30px !important;
    text-align:center;
    color:#94a3b8 !important;
}

.email-verifier-pagination{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:15px 20px;
    background:#f8fafc;
}

.email-verifier-pagination > span,
.email-verifier-pagination div{
    color:#64748b;
    font-size:12px;
    font-weight:650;
}

.email-verifier-pagination div{
    display:flex;
    align-items:center;
    gap:10px;
}

.email-verifier-pagination button:disabled{
    opacity:.45;
    cursor:not-allowed;
}

@media (max-width:1180px){
    .leads-search-tools-row{
        align-items:stretch;
        flex-direction:column;
    }
    .leads-main-search-box{
        flex-basis:auto;
    }
    .leads-secondary-actions{
        justify-content:flex-start;
    }
    .email-verifier-details{
        grid-template-columns:repeat(3,minmax(120px,1fr));
    }
}

@media (max-width:760px){
    .email-verifier-page-header,
    .email-verifier-history-header,
    .email-verifier-pagination{
        align-items:flex-start;
        flex-direction:column;
    }
    .email-verifier-form{
        grid-template-columns:1fr;
    }
    .email-verifier-form button{
        width:100%;
    }
    .email-verifier-current-card{
        grid-template-columns:1fr;
    }
    .email-verifier-current-actions{
        width:100%;
    }
    .email-verifier-details{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .email-verifier-history-header input{
        width:100%;
    }
}

@media (max-width:760px){
    .email-verifier-history-tools{width:100%;flex-basis:100%;}
    .email-verifier-history-tools input{min-width:0;}
}
