/* style.css */
body {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #2e2e2e;
    color: #f4f4f9;
}

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

.container {
    width: 80%;
    max-width: 600px;
    background: #1e1e1e;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    justify-content: space-between;
}

textarea {
    width: 70%;
    min-height: 200px;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    resize: none;
    background-color: #2e2e2e;
    color: #f4f4f9;
    overflow: hidden;
}

#results {
    width: 30%;
    padding-left: 20px;
    padding-top: 10px;
    box-sizing: border-box;
    font-size: 16px;
    color: #66ff66;
    white-space: pre-wrap;
}

.buttons {
    display: flex;
    gap: 10px;
}

.icon-button {
    background-color: #444;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.icon-button:hover {
    background-color: #555;
}
