body {
    font-family: sans-serif;
    background-color: #1e1e1e;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center; /* Centralizar o container horizontalmente */
    justify-content: center; /* Centralizar o container verticalmente */
}

.container {
    width: 70%;
    max-width: 960px;
    margin: 40px auto;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: stretch; 
}

h1 {
    text-align: center; 
    color: #eee;
    margin-bottom: 30px;
    font-size: 2.5em;
}

form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

input[type="text"] {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #555;
    background-color: #333;
    color: #f0f0f0;
    border-radius: 6px;
    font-size: 1.1em;
}

button {
    padding: 12px 25px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

label {
    font-size: 1.2em;
    margin-bottom: 5px;
    display: block;
}

textarea {
    width: 97%;
    padding: 12px;
    border: 1px solid #555;
    background-color: #333;
    color: #f0f0f0;
    border-radius: 6px;
    font-size: 1.1em;
    resize: vertical;
    flex-grow: 1;
    min-height: 150px;
}

.acoes-resposta {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end; /* Alinhar os botões à direita */
}

.copiar-button, .falar-button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.copiar-button {
    background-color: #007bff;
    color: white;
}

.copiar-button:hover {
    background-color: #0056b3;
}

.falar-button {
    background-color: #6c757d;
    color: white;
}

.falar-button:hover {
    background-color: #5a6268;
}

.inativo {
    display: none;
}

a {
    color: white;
}

footer {
    background-color: #333;
    color: #bbb;
    text-align: center;
    padding: 15px;
    font-size: 1em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}