/* Social Feed Styles */
.social-feed-section {
    background-color: #f8f9fa;
}

.post-create-box {
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.post-create-box:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.post-input-wrap textarea {
    resize: none;
    background-color: #f8f9fa;
}

.post-input-wrap textarea:focus {
    background-color: #fff;
    box-shadow: none;
}

.social-post {
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    transition: all 0.3s ease;
}

.social-post:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.post-tags .btn {
    font-size: 0.875rem;
}

.comments-section {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.comment .bg-light {
    background-color: #f8f9fa !important;
}

.comment-actions button {
    font-size: 0.875rem;
}

.comment-input .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #eee;
}

.comment-input .btn {
    border-radius: 0 20px 20px 0;
}

/* Animations */
.social-post {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-attachments {
        width: 100%;
        justify-content: space-between;
    }
}

/* Interactive elements */
.btn-light:hover {
    background-color: #e9ecef;
}

.btn-main:hover {
    transform: translateY(-1px);
}

.comment:hover .comment-actions {
    opacity: 1;
}

/* Tag styling */
.badge.bg-main {
    background-color: var(--main-color);
    color: white;
}
