﻿body {
    font-family: 'IBM Plex Mono', monospace;
    background: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px; /* Add margin to create more space below */
}

.code-block {
    text-align: left;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#tiresult {
    max-width: 90vw;
    font-size: 5px;
    color: #000000;
    padding: 4px 5px;
}

footer {
    background: #eee;
    color: #333;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    width: 100%;
    margin-top: auto;
}