body {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post {
    transition: transform 0.2s, box-shadow 0.2s;
}

.post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.post-category {
    background-color: #e1f5f2;
    color: #0277bd;
    font-size: 0.8rem;
}

.post-content {
    color: #444;
    line-height: 1.6;
}

.no-posts {
    padding: 3rem;
    text-align: center;
    color: #6c757d;
}