/* General styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}

/* Container styles */
.container {
    margin: auto;
    padding: 20px;
    max-width: 800px;
}

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0;
}

/* Login and search links */
.login-links {
    display: flex;
    align-items: center;
}

.login-links a {
    margin-right: 15px;
}

/* Round buttons */
button {
    background-color: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #0066cc;
}

/* Post styles */
.post {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.post-author {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.post-content {
    font-size: 16px;
}

trix-editor .attachment--preview {
    background: none;
}