/*
 * Plugin: English to Telugu Typing Tool
 * Description: Basic styles for the typing tool.
 */

.container {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

.input-section,
.output-section {
    margin-bottom: 20px;
}

.input-section label,
.output-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
    line-height: 1.5;
    box-sizing: border-box; /* Include padding in width */
    resize: vertical; /* Allow vertical resizing */
}

textarea#englishInput {
    min-height: 150px;
}

textarea#teluguOutput {
    background-color: #f9f9f9;
    color: #333;
    min-height: 150px;
}