/* Estilos específicos para a página do post */
.post-page .container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: auto;
    padding: 20px;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #f8f9fa;
}

.post-page h1 {
    color: #00F500;
    margin-top: 0;
}

.post-page .post-date {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.post-page .post-content {
    line-height: 1.6;
}

.post-page .post-content h2 {
    color: #00F500;
    margin-top: 20px;
}

.post-page .post-content ul {
    padding-left: 20px;
}

.post-page .post-content ul li {
    margin-bottom: 10px;
    text-align: left;
}

.post-page .post-content pre {
    background-color: #343a40;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}

.post-page .post-content code {
    font-family: "Courier New", Courier, monospace;
    color: #f8f9fa;
}

.post-page .back-to-blog {
    display: inline-block;
    margin-top: 20px;
    color: #00F500;
    text-decoration: none;
    font-weight: bold;
}

.post-page .back-to-blog:hover {
    text-decoration: underline;
}
