* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: white;
    color: #2a2a2a;
    line-height: 1.6;
    padding: 20px;
}

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

h1 {
    color: #652d90;
    text-align: left;
    margin-bottom: 10px;
    font-size: 2.5em;
    font-weight: 300;
}

.container > p {
    text-align: center;
    color: #8a8a8a;
    margin-bottom: 40px;
    font-style: italic;
}

.post-name {
    font-weight: 600;
    color: #652d90;
    margin-right: 10px;
}

.post-form {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #652d90;
    overflow: hidden;
}

.post-form input, .post-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #2a2a2a;
}

.post-form textarea {
    height: 120px;
    resize: vertical;
}

.post-form button {
    background: #652d90;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    display: block;
    margin-left: auto;
    font-size: 16px;
}

.post-form button:hover {
    background: #5a2580;
}

h2 {
    color: #2a2a2a;
    margin-bottom: 30px;
    font-weight: 300;
}

.post {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 3px solid #652d90;
}

.post-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-weight: 600;
    color: #652d90;
}

.time {
    color: #8a8a8a;
    font-size: 14px;
}

.message {
    color: #2a2a2a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.comments {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.comment {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.comment-name {
    font-weight: 600;
    color: #652d90;
    margin-right: 10px;
}

.comment-text {
    color: #2a2a2a;
}

.comment-form {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.comment-form input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #2a2a2a;
}

.comment-form input[type="text"]:first-of-type {
    width: 150px;
}

.comment-form input[type="text"]:last-of-type {
    flex: 1;
    min-width: 200px;
}

.comment-form button {
    background: #652d90;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
}

.comment-form button:hover {
    background: #5a2580;
}
