body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #314d62;
}

.container {
    width: 50%;
    background: rgb(136, 126, 126);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

textarea {
    width: 100%;
    height: 100px;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ac7e7e;
    border-radius: 5px;
    resize: none;
}

.buttons {
    margin: 10px 0;
}

button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:nth-child(1) { background-color: #36884a; color: rgb(239, 232, 232); } /* Aceptar */
button:nth-child(2) { background-color: #D92B2B; color: rgb(242, 238, 238); } /* Borrar */
button:nth-child(3) { background-color: #93a4a9; color: rgb(250, 243, 243); } /* Borrar resultado */

#outputContainer {
    width: 100%;
    min-height: 100px;
    border: 1px solid #472b2b;
    padding: 10px;
    font-size: 16px;
    text-align: justify;
    background-color: #fbfdcb;
    margin: 10px 0;
}
