.SystemLog-page {
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
}
.searchSystemLogBar {
    width: 100%;
    height: 15%;
    display: flex;
    padding: 15px;
}
    .searchSystemLogBar div {
        margin-left: 2vh;
    }
.getsystemlogButton_container {
    display: flex;
    height: 100%;
    width: 20%;
    justify-content: flex-start;
    align-items: center;
}
.getsystemlogButton {
    height: 55%;
    background-color: #e7f5ff;
    padding: 1vh;
    font-weight: bold;
    border: 0.5px solid #D3D3D3;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    outline: none;
    cursor: pointer;
}
.autoupdate_clickbox {
    display: flex;
    height: 100%;
    width: 10%;
    justify-content: flex-start;
    align-items: center;
}
.SystemLogInfo {
    height: 85%;
    width: 100%;
    overflow-x: hidden;
}
.table {
    table-layout: fixed; 
    width: 100%; 
}
    .table thead th {
        position: sticky;
        top: 0;
        z-index: 1;
    }

#SystemLogTableBody {
    height: 100%;
    overflow-y: auto;
}

    .table th:nth-child(1),
    .table td:nth-child(1) {
        width: 15%;
    }

    .table th:nth-child(2),
    .table td:nth-child(2) {
        width: 5%; 
    }

    .table th:nth-child(3),
    .table td:nth-child(3) {
        width: 20%; 
    }

    .table th:nth-child(4),
    .table td:nth-child(4) {
        width: 15%; 
    }

    .table th:nth-child(5),
    .table td:nth-child(5) {
        width: 15%;
    }

    .table th:nth-child(6),
    .table td:nth-child(6) {
        width: 30%; 
    }

    .table th, .table td {
        word-wrap: break-word; 
        overflow: hidden;
        text-overflow: ellipsis; 
        white-space: nowrap; 
        height: 50px; 
    }


.popuplog-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
