body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e3f2fd;
}

.container {
    width: 50%;
    background: white;
    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 #ccc;
    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: #2D87B0; color: white; } /* Aceptar */
button:nth-child(2) { background-color: #D92B2B; color: white; } /* Borrar */
button:nth-child(3) { background-color: #008CBA; color: white; } /* Borrar resultado */

#outputContainer {
    width: 100%;
    min-height: 100px;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    text-align: justify;
    background-color: #e9e9e9;
    margin: 10px 0;
}
