/* mobile/pages/blogs/show.blade.php */
.blog-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.blog-category-badge .badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.blog-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666;
}

.meta-item i {
    font-size: 12px;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tag {
    background: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.author-section {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.author-details p {
    margin: 0;
    font-size: 12px;
}


/* mobile/pages/comments/show.blade.php */
.comment-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.comment-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

/*  */
/* .comment-actions {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
} */
/*  */

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.content-wrapper {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

/* .author-section {
    padding-top: 20px;
    border-top: 1px solid #eee;
} */

/* .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
} */

/* .author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dee2e6;
} */

/* .author-details h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.author-details p {
    margin: 0;
    font-size: 12px;
} */

.related-blog {
    padding-top: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-title {
    margin-bottom: 8px;
}

.replies-section {
    padding-top: 20px;
}

.reply-author {
    margin-bottom: 8px;
}

.reply-content {
    font-size: 14px;
    color: #666;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .comment-meta-info {
        flex-direction: column;
        gap: 10px;
    }
}

/* mobile-page-blog-show-section-comments.blade.php */
.blog-comments-section {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.comments-header h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-item {
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-avatar-small img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.comment-date, .reply-date {
    font-size: 12px;
    color: #666;
}

.comment-actions .btn-reply {
    background: none;
    border: none;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.comment-content p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.reply-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.reply-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.comment-replies {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #dee2e6;
}

.reply-item {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
}

.reply-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.reply-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-comments {
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
}

.empty-state p {
    margin: 5px 0;
}

.add-comment-section {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.comment-form h6 {
    margin-bottom: 15px;
    color: #333;
}

.form-group textarea {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    resize: vertical;
}

.form-actions {
    margin-top: 15px;
}

.form-actions .btn {
    border-radius: 6px;
    padding: 8px 20px;
}

.comment-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-actions .btn-reply,
.comment-actions .btn-details {
    background: none;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 12px;
}








