body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

pre {
    margin-bottom: 0;
}

.upload-container {
    text-align: center;
}

.steps-container {
    width: 80%;
    max-width: 800px;
    display: none; /* Initially hidden */
}

.step {
    background-color: #343a40;
    border: 1px solid #495057;
    border-radius: .25rem;
    margin: 1rem;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: default;
}

.step-header.clickable {
    cursor: pointer;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.status-not-started { background-color: grey; }
.status-in-progress { background-color: orange; }
.status-done { background-color: green; }
.status-failed { background-color: red; }

.accordion-body {
    background-color: #212529;
    padding: 1rem;
    border-top: 1px solid #495057;
    max-height: 300px;
    overflow-y: scroll;
}