.eml-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 1%; bottom: 0%; right:1%; top:5%;
    width: 98%; height: 95%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(3px);
}

.eml-modal-content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: auto;
    background: #fff;
    border-radius: 12.5px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.125);
}

.eml-close {
    position: fixed;
    right: 25px;
    top: 20px;
    color: #222;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 36px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    z-index: 1000000;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    transition: background 0.2s ease;
}

.eml-close:hover {
    background: #f0f0f0;
}

#eml-iframe {
    width: 100%;
    height: 100%;
    border: none;
}