body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #5a4a42; /* Browny color */
    margin-bottom: 15px;
}

p {
    margin-bottom: 25px;
    color: #666;
}

textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 1rem;
}

button {
    background-color: #8d6e63; /* Browny color */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5d4037;
}

/* Character counter styles */
.char-counter {
    text-align: right;
    font-size: 0.8em;
    color: #aaa;
    margin-top: -18px; /* Adjust as needed to position below textarea */
    margin-right: 5px; /* Add some right margin */
    margin-bottom: 10px; /* Add space below counter before button */
    height: 1em; /* Prevent layout shift */
}

/* Profile image styles */
.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
}

/* Add more specific styles as needed */ 