.logs-page-container{
    height: 95vh; 
    width: 97.5vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content:flex-start;  
    background-color: var(--primary-background-color);
    padding: 1px;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box; 
}

.logs-haed-container{
    width: 100%;
    /* min-width: 1200px; */
    height: 5%; 
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content:flex-start;  
    background-color: var(--div-head-first-background-color);
    gap: 2px;
    padding-left: 2px;
    border: var(--div-border);
    border-radius: 5px;
    box-sizing: border-box; 
}

.logs-table-container {
    width: 99.9%;
    height: 94%;
    /*display: block;   ← Allows scroll without flex limits */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: var(--div-border);
    border-radius: 5px;
    overflow-x: auto;
    overflow-y: auto; /* In case height overflows */
    background-color: var(--primary-background-color);
    box-sizing: border-box;
}