/* Stylizacja główna */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

/* Kontener na okna wejścia i wyjścia */
.container {
    display: flex;
    gap: 20px;
    width: 80%;
    max-width: 1200px;
}

/* Styl dla okna wejścia */
.editor, .output {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

textarea {
    flex: 1;
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1em;
    resize: none;
    border-radius: 8px;
    line-height: 1.5em;
}

textarea::placeholder {
    color: #888;
}

/* Styl dla przycisku */
button {
    background-color: #03a9f4;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0288d1;
}

/* Styl dla selecta języków */
.language-select {
    margin-top: 20px;
    text-align: center;
}

select {
    padding: 10px;
    background-color: #1f1f1f;
    color: #ffffff;
    border: 1px solid #888;
    border-radius: 5px;
    font-size: 1em;
}
