#tab_content_OutputFiles.active {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 100%;
    padding: 5px;
}

#output_files_list {
    flex: 0 0 200px;
    border-right: 1px solid #444;
    overflow-y: auto;
    padding-right: 10px;
}

#output_files_preview {
    flex: 1;
    overflow-y: auto;
    padding-left: 10px;
    white-space: pre-wrap;
    font-family: 'Cascadia Code', monospace;
    font-size: 14px;
}

.file_item {
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 2px;
    color: #ccc;
    transition: background 0.2s;
}

.file_item:hover {
    background-color: #2a2a2a;
}

.file_item.active {
    background-color: #3a3a3a;
    color: #8BC34A;
}

.button_download_all_output_files {
    margin-top: 10px;
    background: #07830a;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-family: 'mclaren', sans-serif;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.button_download_all_output_files:hover {
    background: #0a9e0d;
}
