@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* 
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
}

body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    color: #333;
}

#logo
{
    width: 100px
}

.container
{
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#title
{
    text-align: center;
}

h1, h2, h3, h4
{
    margin: 20px 15px;
    text-align: left;
}

h1
{
    color: #008643;
}

.input_group, p
{
    text-align: left;
    padding: 15px;
}

label
{
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.subtitle
{
    font-size: 12px;
    margin-bottom: 5px;
    color: #333;
}

textarea 
{
    width: 100%;
    padding: 8px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 60px;
}

button
{
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #008643;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover
{
    background-color: #016A36;
}

.removal
{
    background-color: #d73d5f; 
}

.removal:hover
{
    background-color: #b53450;
}

.output
{
    background-color: #dddddd;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 12px;
    line-height: 1.5;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
}

.output_group
{
    margin-top: 5px;
    border-radius: 4px;
    padding: 15px;
    text-align: left;
}

.output_group h1,
.output_group h2,
.output_group h3
{
    margin: 20px 0;
}

.placeholder
{
    display: none;
}

#result
{
    background-color: #d9e2db;
}