h1 {
    text-align: center;
}
h2 {
    text-align: center;
}

.page-button {
    width: 500px;
    height: 50px;
    font-size: x-large;
}

.error { color: red; font-weight: bold; }
.warning { color: orange; }
.info { color: rgb(0, 76, 255); }

.sys { color: rgb(26, 255, 0); font-weight: bold; }

.state-start > .log-header {
    background-color: #2563eb;
}

.state-process > .log-header {
    background-color: #d97706;
}

.state-end > .log-header {
    background-color: #059669;
}

.state-error > .log-header {
    background-color: #dc2626;
}

.prompt-content {
    width: 100%;
    height: 500px;
    text-wrap-mode: nowrap;
}

.prompt-box {
    width: 500px;
    justify-content: center;
    margin: auto;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.logs-box {
    width: 800px;
    margin: auto;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: black;
}

.index-box {
    display: flex;
    justify-content: center;
}

.log-section {
    border: 1px solid #ccc;
    background-color: rgb(255, 255, 255);
    margin-bottom: 5px;
    border-radius: 0;
    overflow: hidden;
}

/* Compact log body */
.log-body {
    display: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.3;
    background: #ffffff;
}

/* Compact header */
.log-header {
    padding: 6px 10px;
    font-size: 13px;
}

/* Log lines */
.log-body pre {
    margin: 0;
    white-space: pre;
    overflow-x: auto;
}
