body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: lab(59.37% 7.56 -18.34);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: lab(47.15% -15.61 -23.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 600px;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

h1 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
}

textarea {
    flex-grow: 1; /* Ocupa todo o espaço disponível */
    width: 100%;
    padding: 15px;
    border: 1px solid #2421c0;
    border-radius: 5px;
    resize: none; /* Impede o usuário de mudar o tamanho */
    font-size: 16px;
    line-height: 1.5;
    outline: none;
    box-sizing: border-box; /* Garante que o padding não aumente a largura */
}

textarea:focus {
    border-color: #007bff;
}

button {
    margin-top: 10px;
    padding: 10px;
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #cc0000;
}

#status {
    font-size: 0.8rem;
    color: #888;
    text-align: right;
    margin-bottom: 0;
}

.voltar{
    position: absolute;
    font-size: 15px;
    color: black;
    font-weight: bold;
    top: 2%;
    right: 2%;
}