body {
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
}

.blog-post {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.post-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-content p {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #444;
}

.post-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #555;
}

.post-tags span {
    background-color: #eef;
    padding: 0.3rem 0.6rem;
    margin-right: 0.5rem;
    border-radius: 4px;
}

#post-form {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

#post-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
}

#post-form input,
#post-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#post-form button {
    margin-top: 1.5rem;
    padding: 0.7rem 1.2rem;
    background-color: teal;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}