body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 30px;
}

.button-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.credits {
}
.title {
    margin-bottom: 20px;
    color: #007cf8;
}


.file-input {
    display: none;
}


.file-label {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn {
    background-color: #1c70b4;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    font-size: 30px;
}

.btn:hover {
    background-color: #2980b9;
}

.ascii-display {
    font-family: 'Courier New', Courier, monospace;
    color: #000000;
    background-color: #ffffff; 
    max-height: 50vh;
    font-size: 10px;
    overflow: auto; 
    white-space: pre; 
}



