body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f0f4f8; /* Very light blue-grey */
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

form {
    margin-bottom: 20px;
}

form input,
form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.post {
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffffff; /* White background for posts */
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.post-header strong {
    font-size: 1.3em;
    color: #33a;
    flex-basis: 100%;
    margin-bottom: 5px;
    word-break: break-word; /* Ensure title wraps */
    overflow-wrap: break-word;
}

.post-name {
    font-weight: normal;
    color: #555;
    font-size: 0.9em;
    margin-right: 15px;
    word-break: break-word; /* Ensure name wraps */
    overflow-wrap: break-word;
    flex-shrink: 1; /* Allow the name to shrink if needed */
    min-width: 0; /* Important for flex items to shrink below content size */
}

.post-date {
    font-size: 0.8em;
    color: #888;
}

.hidden-field {
    display: none;
}

/* Cool color design for links */
a {
    color: #007bff; /* A standard cool blue */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Style for quoted comments */
.post-body .quote {
    color: #556677; /* Slightly muted text color */
}

/* Text wrapping for post content */
.post-header strong,
.post-name {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.post-body p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

