*{
    box-sizing:border-box;
}

.emportal-container{

    max-width:900px;
    margin:50px auto;
    padding:20px;

}

.emportal-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.emportal-title{

    text-align:center;

    font-size:38px;

    margin-bottom:10px;

}

.emportal-description{

    text-align:center;

    color:#666;

    margin-bottom:35px;

}

.emportal-drop-area{

    border:3px dashed #d1d5db;

    border-radius:16px;

    padding:60px 20px;

    text-align:center;

    transition:.3s;

    background:#fafafa;

    cursor:pointer;

}

.emportal-drop-area:hover{

    border-color:#2563eb;

    background:#f5f9ff;

}

.emportal-upload-icon{

    font-size:70px;

    margin-bottom:15px;

}

.emportal-button{

    background:#2563eb;

    color:white;

    border:none;

    padding:15px 30px;

    border-radius:10px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.emportal-button:hover{

    background:#1d4ed8;

}

.emportal-files{

    margin-top:40px;

}

.emportal-files h3{

    margin-bottom:20px;

}

#emportal-file-list{

    list-style:none;

    padding:0;

    margin:0;

}

.emportal-file-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px;

    border:1px solid #e5e7eb;

    border-radius:10px;

    margin-bottom:12px;

    background:white;

}

.file-left{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.file-right{

    display:flex;

    align-items:center;

    gap:15px;

}

.remove-file{

    background:#ef4444;

    color:white;

    border:none;

    border-radius:8px;

    width:38px;

    height:38px;

    cursor:pointer;

}

.remove-file:hover{

    background:#dc2626;

}

.emportal-summary{

    margin-top:30px;

    display:flex;

    justify-content:space-between;

    background:#f9fafb;

    padding:20px;

    border-radius:12px;

}

.emportal-summary strong{

    display:block;

    margin-bottom:5px;

}

.emportal-merge{

    width:100%;

    margin-top:30px;

    background:#16a34a;

    color:white;

    border:none;

    padding:18px;

    font-size:18px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.emportal-merge:hover{

    background:#15803d;

}

.emportal-status{

    margin-top:20px;

    padding:15px 18px;

    border-radius:10px;

    font-weight:600;

    text-align:center;

}

.emportal-status-info{

    background:#eff6ff;

    color:#1d4ed8;

}

.emportal-status-success{

    background:#f0fdf4;

    color:#15803d;

}

.emportal-status-error{

    background:#fef2f2;

    color:#dc2626;

}

.emportal-result{

    margin-top:20px;

}

.emportal-result .emportal-button{

    display:block;

    width:100%;

    text-align:center;

    text-decoration:none;

    background:#16a34a;

}

.emportal-result .emportal-button:hover{

    background:#15803d;

}

@media(max-width:768px){

    .emportal-card{

        padding:25px;

    }

    .emportal-title{

        font-size:30px;

    }

    .emportal-summary{

        flex-direction:column;

        gap:20px;

    }

    .emportal-file-item{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

}