@charset "UTF-8";
/**
*  ausgelagertes css für das Status-Panel
*/
/* --- Grundlayout --- */
#file_status_panel {
    position: fixed;
    bottom: 50px;
    right: 10px;
    width: 96vw;
    height: 300px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    border: 1px solid #999;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
}

#file_status_panel {
    min-width: 95vw;
    min-height: 100px;
    max-width: 98vw;
    max-height: 90vh;
   
}

#file_status_panel.darkmode {
    background: #222;
    color: #ccc;
    border-color: #555;
}

/* --- Header --- */
#file_status_panel .panel-header {
    background: #ddd;
    padding: 4px 8px;
    font-weight: bold;
    cursor: grab;
    border-bottom: 1px solid #bbb;
}

#file_status_panel.darkmode .panel-header {
    background: #444;
    color: #eee;
}

/* --- Inhalt --- */
#file_status_panel .panel-content {
    padding: 6px;
    overflow: auto;
    resize: both;
    max-height: calc(100% - 40px);
    font-family: monospace;
}

.panel-header {
    background: #ccc;
    padding: 5px;
    cursor: grab;
    user-select: none;
    font-weight: bold;
}

/* --- Resize Handle --- */
#file_status_panel .resize-handle {
    width: 15px;
    height: 15px;
    background: #ccc;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: nwse-resize; /* diagonal */
}


.file-entry {
    font-family: monospace;
    font-size: 0.9rem;
    margin: 2px 0;
}

td.td_right { text-align: right;}

/* --- Toggle-Button --- */
#file_status_toggle {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #444;
    color: #fff;
    font-size: 1.4rem;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 10000;
}
#file_status_toggle:hover {
    background: #666;
}
body.darkmode #file_status_toggle {
    background: #888;
    color: #000;
}
