body {
    background-color: #0f0f0f;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ff00;
}

h1 {
    margin-bottom: 10px;
}

.made-by {
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #00cc00;
}

input[type="file"] {
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #00ff00;
    color: #0f0f0f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #00cc00;
}

.output-console {
    margin-top: 20px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 6px;
    background-color: #000000;
    white-space: pre-wrap;
}
