#errorLogList{
    padding:10px;
}

.errorCard{
    display:flex;
    gap:10px;
    padding:10px;
    margin-bottom:8px;
    background:#fff3f3;
    border-left:4px solid red;
    border-radius:6px;
    cursor:pointer;
}

/* ERROR LOG ICON */
.error-icon{
    color:#ff9800;
}

.errorFile{
    font-weight:600;
}

.errorMsg{
    font-size:12px;
    color:#555;
}

#errorPopup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:none;
    align-items:center;
    justify-content:center;
}

.popupBox{
    background:#fff;
    padding:15px;
    width:90%;
    max-width:400px;
    border-radius:10px;
}