/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 800px;
}

.blog-details {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-header {
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 2em;
    color: #333;
}

.post-header p {
    font-size: 0.9em;
    color: #666;
}

.post-image {
    margin-top: 20px;
}

.post-image img {
    max-width: 100%;
    border-radius: 8px;
}

.post-content {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 1.1em;
    color: #444;
}

@media (max-width: 768px) {
    .blog-details {
        padding: 20px;
    }

    .post-header h1 {
        font-size: 1.8em;
    }

    .post-content {
        font-size: 1em;
    }
}
/* Back Button Styles */
.back-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
}

.back-button:hover {
    background-color: #0056b3;
    color: #fff;
}
