body, html {
    /*height: 100%;
    margin: 0;*/
    font-family: system-ui, sans-serif;
    /*background-color: #f4f4f4;*/
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}

.container {
    background-color: white;
    padding: 1rem;
    border-radius: 0;
}

textarea {
    box-sizing: border-box;
    width: 100%; /* Adjust width to account for padding */
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0;
    resize: vertical; /* Allow only vertical resizing */
    line-height: 1.5; /* Improve line spacing */
    outline: none; /* Remove default focus outline */
    border: 1px solid black;
}

.text-area:focus {
    border-color: #007bff; /* Highlight border color when focused */
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

button {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 0;
    cursor: pointer;
    color: black;
    font-weight: normal;
    border: 1px solid black;
    -webkit-appearance: none;
}



.stats {
    font-size: small;
    color: #666;
    text-align: center;
}

.stats span {
    margin-right: 0.5rem;
}

