.navbar-brand img {
        height: 40px;
        transition: transform 0.3s;
    }
    .navbar-brand:hover img {
        transform: rotate(-5deg);
    }
    .nav-link {
        position: relative;
        padding-bottom: 5px;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #0d6efd;
        transition: width 0.3s;
    }
    .nav-link:hover::after {
        width: 100%;
    }
/* Custom Styles */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.card {
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comment-form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

#pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}