.post-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    transition: 0.3s;
}

.post-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.blog-post {
    text-align: left;
}

.post-title {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.post-categories {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    background: #2e8cf1;
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin: 5px;
}

.category-badge:hover {
    background: #0056b3;
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.post-content h2 {
    color: #2c3e50;
    margin-top: 25px;
}

.code-block {
    background: #1e1e1e;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14px;
    overflow-x: auto;
    margin: 10px 0;
}

@media (max-width: 768px) {
    table {
        display: block;
        width: 400%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}