body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f7;
}

.app {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header h1 {
    margin: 0;
}

.translator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.panel {
    background: white;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

textarea {
    width: 100%;
    height: 200px;
    border: none;
    resize: none;
    font-size: 16px;
    outline: none;
}

.output {
    position: relative;
}

#result {
    min-height: 200px;
    font-size: 16px;
}

.controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

select, button {
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
}

button {
    background: black;
    color: white;
    cursor: pointer
